-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (97 loc) · 4.66 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik+Mono+One&family=Rubik:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
<script src="/main.js"></script>
<title>Home Page</title>
</head>
<body>
<header>
<div class="home-button">
<a href="index.html"><img src="./img/Home_red.svg" alt="Home"></a>
</div>
<nav>
<ul class="nav-links">
<li ><a class="nav-link" href="white-paper.html">White Paper </a></li>
<li ><a class="nav-link" href="road-map.html">Road Map </a></li>
<li ><a class="nav-link" href="invest.html">Invest </a></li>
<li ><a class="nav-link" href="donate.html">Donate </a></li>
<li ><a class="nav-link" href="artists.html">Artists </a></li>
</ul>
</nav>
</header>
<main>
<section class="splash">
<div class="introduction">
<div class="intro-text">
<h1>Revolutionizing how music is bought, sold, and shared</h1>
<p>enabling artists and users through blockchain technology</p>
</div>
<div class="cta">
<a href="https://app.dodoex.io/exchange/BNB-CDOG?network=bsc-mainnet" target="_blank"><button class="buy-now">Buy Now</button></a>
<a href="https://charts.bogged.finance/0xDAD77AdB70b703936949388231f7024114924a81" target="_blank"><button class="live-chart">Live Chart</button></a>
</div>
</div>
</section>
<section class="info">
<div class="info-text">
<div>
<h3>Welcome to the future of decentralized music. We are Crescendo and we look to bring blockchain technology into your everyday life by creating a music platform built on the binance smart chain.</h3>
</div>
</div>
<div class="info-block-container">
<div class="info-block-1">
<h4>12% Tax</h4>
<h5>3% to HODLers <br>
3% Auto Liquidity <br>
3% Buyback <br>
3% Dev Wallet
</h5>
</div>
<div class="info-block-2">
<h4>Deflationary</h4>
<h5>The burn address holds 20% of our supply, recieving a portion of the redistribution</h5>
</div>
<div class="info-block-3">
<h4>Low Cost</h4>
<h5>Low gas fees and mint upon purchase means you pay even less for NFT Music</h5>
</div>
</div>
<div class="contract">
Contract Address
<div class="contract-text-box-container">
<input class="contract-text-box" type="text" value="0xdad77adb70b703936949388231f7024114924a81" id="contract" readonly>
<img onclick="copyText('contract')" class="contract-copy" src="img/copy-text.svg" alt="click to copy text">
</div>
</div>
</section>
<section class="team">
<div class="team-card-container">
<div class="team-card-jordon">
<img class="team-img-jordon" src="img/jordon.jpg" alt="Jordon Renn">
</div>
<h4>Jordon Renn</h4>
<br>
<h5>Founder & Developer</h5>
</div>
</section>
</main>
<footer class="footer">
<h3>Connect with us!</h3>
<div class="social-links">
<a href="https://t.me/crescendogetoken"><img src="img/social/telegram.svg" alt="Telegram"></a>
<a href="https://twitter.com/crescendoge"><img src="img/social/twitter.svg" alt="Twitter"></a>
<a href="https://www.facebook.com/CrescenDoge/"><img src="img/social/facebook.svg" alt="Facebook"></a>
<a href="https://discord.gg/BdbsaxjxJW"><img src="img/social/discord.svg" alt="Discord"></a>
<a href="https://www.youtube.com/channel/UClVBpb2mQ32VbQyZtauDe6w"><img src="img/social/youtube.svg" alt="YouTube"></a>
<a href="https://github.com/CrescenDoge"><img src="img/social/github.svg" alt="GitHub"></a>
</div>
</footer>
</body>
</html>