-
Notifications
You must be signed in to change notification settings - Fork 56
/
index.html
104 lines (100 loc) · 3.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/9650a62e47.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/style.css">
<title>Product Landing Page - freecodecamp</title>
</head>
<body>
<header id="header">
<nav id="nav-bar">
<img id="header-img" src="https://s3.amazonaws.com/freecodecamp/original_trombones.png" alt="logo" class="logo">
<ul>
<a class="nav-link" href="#features">Features</a>
<a class="nav-link" href="#how-it-work">How It Works</a>
<a class="nav-link" href="#pricing">Pricing</a>
</ul>
</nav>
</header>
<div id="container">
<section class="message-box">
<h1>Handcrafted, home-made masterpieces</h1>
<form id="form" action="https://www.freecodecamp.com/email-submit">
<input id="email" type="email" name="email" placeholder="[email protected]">
<input id="submit" type="submit" value="Get Started" class="btn"></input>
</form>
</section>
<section id="features">
<div class="feature">
<i class="fab fa-free-code-camp fa-3x"></i>
<div>
<h2>Premium Materials</h2>
<p>Our trombones use the shiniest brass which is sourced locally. This will increase the longevity of your
purchase.</p>
</div>
</div>
<div class="feature">
<i class="fas fa-shipping-fast fa-3x"></i>
<div>
<h2>Fast Shipping</h2>
<p>We make sure you receive your trombone as soon as we have finished making it. We also provide free returns
if you are not satisfied.</p>
</div>
</div>
<div class="feature">
<i class="fas fa-battery-full fa-3x"></i>
<div>
<h2>Quality Assurance</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>
</section>
<section id="how-it-work">
<iframe id="video" src="https://www.youtube.com/embed/JEwOy5Fm1yw"></iframe>
</section>
<section id="pricing">
<div class="price-box">
<h3>TENOR TROMBONE</h3>
<h2>$600</h2>
<p>Lorem ipsum.
Lorem ipsum.
Lorem ipsum dolor.
Lorem ipsum.</p>
<a href="#" class="btn">SELECT</a>
</div>
<div class="price-box">
<h3>BASS TROMBONE</h3>
<h2>$900</h2>
<p>Lorem ipsum.
Lorem ipsum.
Lorem ipsum dolor.
Lorem ipsum.</p>
<a href="#" class="btn">SELECT</a>
</div>
<div class="price-box">
<h3>VALVE TROMBONE</h3>
<h2>$1200</h2>
<p>Lorem ipsum.
Lorem ipsum.
Lorem ipsum dolor.
Lorem ipsum.</p>
<a href="#" class="btn">SELECT</a>
</div>
</section>
</div>
<!-- FOOTER -->
<footer id="main-footer">
<div>
<a href="#">Privacy</a>
<a href="#">Terms</a>
<a href="#">Contact</a>
</div>
<p class="my-name">This Page recreated by <a target="_blank" id="fcs" href="https://github.com/FreeCodeCamp-Solutions/">FreeCodeCamp-Solutions</a></p>
<p>©Copyright 2016, Original Trombones</p>
</footer>
</body>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</html>