forked from bgiudicid/BoomGirlsProject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (57 loc) · 2.23 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
<!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="stylesheet" href="css/style.css">
<title>DomBoom</title>
</head>
<body>
<header class="header">
<input id="menu-toggle" type="checkbox" />
<label class='menu-button-container' for="menu-toggle">
<div class='menu-button'></div>
</label>
<ul class="menu">
<li class="li"><a href="#"></a>Premium</a></li>
<li class="li"><a href="#"></a>Help</a></li>
<li class="li"><a href="#"></a>Download</a></li>
<li class="li green"><a href="#"></a>Sign Up</a></li>
<li class="li"><a href="#"></a>Log In</a></li>
</ul>
<h1 class="logo">
<img src="./assets/logo.png" alt="DomBoom">
</h1>
</header>
<main class="main">
<div class="textBox">
<h2 class="slogan">Music for <br>everyone.</h2>
<p class="info">Millions of songs. No credit card needed.</p>
<button class="greenbutton"> <a href="#premiumSection">Hit the Boom</a></button>
</div>
<div class="imagen">
<img src="./assets/drumkit.png" alt="drumkit">
<button class="circle small" id="crash"></button>
<button class="circle small" id="bombo"></button>
<button class="circle big" id="tom1"></button>
<button class="circle big" id="tom2"></button>
<button class="circle big" id="tom3"></button>
<button class="circle big" id="tom4"></button>
<button class="circle small" id="hit"></button>
<button class="circle small" id="redoblante"></button> </div>
</main>
<div class="premium" id="premiumSection">
<button class="circle drop">
<p>Hit</p>
</button>
<h3 class="premiumText">Try Premium free for 1 month.
</h3>
<p class="subText">Play millions of songs ad-free, on-demand, and offline.
</p>
<button class="whiteButton">SEE PRICING
</button>
</div>
<script src="index.js"></script>
</body>
</html>