-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
178 lines (174 loc) · 5.75 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
crossorigin="anonymous"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap"
rel="stylesheet"
/>
<title>Product Landing Page</title>
</head>
<body>
<div class="container">
<div class="drum">
<header id="header" class="header d-flex">
<div class="image-logo">
<img
src="https://cdn.freecodecamp.org/testable-projects-fcc/images/product-landing-page-logo.png"
id="header-img"
alt="A logo"
/>
</div>
<div class="navigation">
<nav id="nav-bar">
<!--some link here-->
<ul>
<li><a href="#features" class="nav-link">Features</a></li>
<li>
<a href="#how-it-works" class="nav-link">How It Works</a>
</li>
<li><a href="#sect" class="nav-link">Pricing</a></li>
</ul>
</nav>
</div>
</header>
</div>
<main id="main">
<div>
<h2>Handcrafted, home-made masterpieces</h2>
<form id="form" action="https://www.freecodecamp.com/email-submit">
<label for="email"></label>
<p>
<input
type="email"
placeholder="Enter your email address"
id="email"
name="email"
class="input"
/>
</p>
<p>
<input
id="submit"
type="submit"
value="GET STARTED"
class="input start"
/>
</p>
</form>
</div>
<section id="features" class="d-flex">
<article class="hero">
<div class="pack">
<i class="fa fa-3x fa-fire"></i>
</div>
<div class="content">
<h3>Premium Materials</h3>
<p class="desc">
Our trombones use the shiniest brass which is sourced locally.
This will increase the longevity of your purchase.
</p>
</div>
</article>
<article class="hero">
<div class="pack">
<i class="fa fa-3x fa-truck"></i>
</div>
<div class="content">
<h3>Fast Shipping</h3>
<p class="desc">
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>
</article>
<article class="hero">
<div class="pack">
<i class="fa fa-3x fa-battery-full" aria-hidden="true"></i>
</div>
<div class="content last">
<h3>Quality Assurance</h3>
<p class="desc">
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>
</article>
</section>
<section id="how-it-works" class="frame">
<iframe
src="https://www.youtube.com/embed/y8Yv4pnO7qc"
title="Roman Carnival Overture Op. 9 for Five Trombones"
width="600"
height="400"
id="video"
loading="lazy"
></iframe>
</section>
<section id="sect">
<div class="box-container d-flex">
<div class="card">
<h4 class="bone">TENOR TROMBONE</h4>
<p class="price">$600</p>
<p>Lorem ipsum.</p>
<p>Lorem ipsum.</p>
<p>Lorem ipsum dolor.</p>
<p>Lorem ipsum.</p>
<button type="submit" value="SELECT">SELECT</button>
</div>
<div class="card">
<h4 class="bone">BASS TROMBONE</h4>
<p class="price">$900</p>
<p>Lorem ipsum.</p>
<p>Lorem ipsum.</p>
<p>Lorem ipsum dolor.</p>
<p>Lorem ipsum.</p>
<button type="submit" value="SELECT">SELECT</button>
</div>
<div class="card">
<h4 class="bone">VALVE TROMBONE</h4>
<p class="price">$1200</p>
<p>Plays similar to a Trumpet</p>
<p>Great for Jazz Bands</p>
<p>Lorem ipsum dolor.</p>
<p>Lorem ipsum.</p>
<button type="submit" value="SELECT">SELECT</button>
</div>
</div>
</section>
</main>
<div class="tail">
<footer>
<div class="foot">
<nav id="nav-bar">
<ul>
<li>
<a href="#" class="nav-link">Privacy</a>
</li>
<li>
<a href="#" class="nav-link">Terms</a>
</li>
<li>
<a href="#" class="nav-link">Contact</a>
</li>
</ul>
</nav>
<p>Copyright 2016, Original Trombones</p>
</div>
</footer>
</div>
</div>
</body>
</html>