forked from nilisha-jais/Musicophilia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (95 loc) · 3.52 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
99
100
101
102
103
104
105
106
107
108
109
<!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>Musicophilia</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Chango&display=swap" rel="stylesheet">
<script href="app.js"></script>
</head>
<body>
<div class="nav">
<div class="nav-header">
<div class="nav-title">
μSICOPHILIA
</div>
</div>
<div class="nav-btn">
<label for="nav-check">
<span></span>
<span></span>
<span></span>
</label>
</div>
<div class="nav-links">
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact Us</a>
</div>
</div>
<div class="main">
<div class="heading">Mindfull Music</div>
<div class="container">
<div class="content">
<h1>Music Box</h1>
<span style='font-size:80px;'>🎧</span>
<h3>Solace in songs</h3>
<a href="musicBox/index.html"><button class="btn" id="box-1">GO</button></a>
<br><br>
</div>
<div class="content" >
<h1>The Band</h1>
<span style='font-size:80px;'>🎤</span>
<h3>Make your own beats</h3>
<a href="Band/index.html"><button class="btn" id="box-6">GO</button></a>
<br><br>
</div>
<div class="content" >
<h1>Piano</h1>
<span style='font-size:80px;'>🎹</span>
<h3>Play your own notes</h3>
<a href="Piano/index.html"><button class="btn" id="box-2">GO</button></a>
<br><br>
</div>
</div>
</div>
<div class="main">
<div class="heading">Rollick Games</div>
<div class="container">
<div class="content">
<h1>Memory Game</h1>
<span style='font-size:80px;'>🥇</span>
<h3>Test your memory by this music game</h3>
<a href="Memory-game/index.html"><button class="btn" id="box-3">GO</button></a>
<br><br>
</div>
<div class="content">
<h1>Music Quiz</h1>
<span style='font-size:80px;'>🕵</span>
<h3>How much do you know your music industry?</h3>
<a href="Quiz/index.html"><button class="btn" id="box-4">GO</button></a>
<br><br>
</div>
</div>
</div>
<div class="main">
<div class="heading">Zestful Dance</div>
<div class="container">
<div class="content">
<h1>Lets Dance</h1>
<span style='font-size:80px;'>💃</span>
<h3>Dance along with us</h3>
<a href="https://www.youtube.com/results?search_query=dances++of+world"><button class="btn" id="box-5">GO</button></a>
<br><br>
</div>
</div>
</div>
<br><br>
<footer>
© Nilisha | All rights reserved
</footer>
</body>
</html>