-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
64 lines (57 loc) · 2.89 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
<!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">
<title>MusicCoin-Home</title>
<!-- <script src="https://cdn.tailwindcss.com"></script> -->
<link rel="stylesheet" href="style.css">
</head>
<body class="bg-[#191919]">
<div class="logo text-4xl font-semibold font-mono p-6 mx-10 my-5">
<span class="bg-gradient-to-r from-pink-300 to-red-600 text-transparent bg-clip-text font-bold cursor-pointer">
MusicCoin</span>
</div>
<div class="container w-11/12 m-auto">
<div class="heading py-12 my-20 text-5xl m-auto leading-loose">
<h1 class="text-white text-center">Revolutionizing the Music Industry with <span
class="bg-gradient-to-r from-violet-500 to-fuchsia-500 text-transparent bg-clip-text font-bold">Blockchain-Powered,</span>
Decentralized <span
class="bg-gradient-to-r from-violet-500 to-fuchsia-500 text-transparent bg-clip-text font-bold">Web3</span>
Music
Player.</h1>
</div>
<div class="btn text-center">
<a href="home-page.html">
<button id="create-account-button" class="text-white bg-gradient-to-r from-violet-500 to-fuchsia-500 text-transparent px-5 py-3 rounded-md text-xl font-semibold m-auto hover:bg-gradient-to-r hover:from-violet-400 hover:to-fuchsia-400
hover:scale-110">Create Account</button>
</a>
</div>
</div>
<!--Amandeep-->
<footer class="bg-black py-4 flex mt-40">
<div class="logo text-2xl font-semibold font-mono mx-10 my-5 w-2/5">
<span
class="bg-gradient-to-r from-red-500 to-red-700 text-transparent bg-clip-text font-bold cursor-pointer">
MusicCoin</span>
<p class="text-sm my-3 text-white">Made with ❤️ by The Byte Squad</p>
</div>
<div class="container mx-auto text-center text-gray-400 py-4 ml-40 my-5">
<div>Listen to your favorite music anywhere, anytime.</div>
<div class="text-gray-400 mb-4 md:mb-0">© 2023 MusicCoin.xyz, Inc.</div>
</div>
<div class="container mx-auto flex flex-col md:flex-row px-4 w-2/4 ml-36 my-5">
<div class="flex space-x-4 my-5">
<a href="about.html"
class="text-gray-400 hover:text-white transition duration-150 ease-in-out">About</a>
<a href="contact.html"
class="text-gray-400 hover:text-white transition duration-150 ease-in-out">Contact</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-150 ease-in-out">Privacy
Policy</a>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>