-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (90 loc) · 3.87 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
<!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>Landing Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div>
<header id="header">
<h2>Original Trombones</h2>
<nav id="nav-bar">
<ul>
<li><a class="nav-link" href="index.html#contnt">Features</a> </li>
<li><a class="nav-link" href="index.html#vdeo">How it works</a></li>
<li><a class="nav-link" href="index.html#cards">Pricing</a></li>
</ul>
</nav>
</header>
<main>
<div class="main">
<h2>Handcrafted, home-made masterpieces</h2>
<form id="form" action="https://www.freecodecamp.com/email-submit">
<input type="email" id="email" placeholder="Email Address">
<br><br>
<input type="submit" id="submit">
</form>
</div>
<div id="contnt">
<div class="contnt1">
<h2><b>Premium Materials</b></h2>
<p>Our trombones use the shiniest brass which is sourced locally. This will increase the longevity of your purchase.</p>
</div>
<div class="contnt1">
<h2><b>Fast Shipping</b></h2>
<p>We make sure you recieve your trombone as soon as we have finished making it. We also provide free returns if you are not satisfied.</p>
</div>
<div class="contnt1">
<h2><b>Quality Assurance</b></h2>
<p>For every purchase you make, we will ensure there are no damages or faults and we will check and test the pitch of your instrument.</p>
</div>
</div>
<div id="vdeo">
<iframe width="560" height="315" src="https://www.youtube.com/embed/y8Yv4pnO7qc" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div id="cards">
<div class="styl">
<div class="card1">
<h3><b>TENOR TROMBONE</b></h3>
<h2>$600</h2>
<p>Lorem ipsum <br>
Lorem ipsum <br>
Lorem ipsum dolor <br>
Lorem ipsum</p>
<a class="select" href="#">SELECT</a>
</div>
<div class="card2">
<h3><b>BASS TROMBONE</b></h3>
<h2>$900</h2>
<p>Lorem ipsum <br>
Lorem ipsum <br>
Lorem ipsum dolor <br>
Lorem ipsum</p>
<a class="select" href="#">SELECT</a>
</div>
<div class="card3">
<h3><b>VALVE TROMBONE</b></h3>
<h2>$1200</h2>
<p>Plays similar to a Trumpet <br>
Great for Jazz Bands <br>
Lorem ipsum dolor <br>
Lorem ipsum</p>
<a class="select" href="#">SELECT</a>
</div>
</div>
</div>
</main>
<footer class="footer">
<ul class="first">
<li>Privacy</li>
<li>Terms</li>
<li>Contact</li>
</ul>
<p>Copyright 2016, Original Trombones</p>
</footer>
</div>
</body>
</html>