-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguitars-lp.html
89 lines (89 loc) · 5.1 KB
/
guitars-lp.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
<link rel="stylesheet" href="./styles/guitars.css">
</head>
<body>
<!-- test script -->
<!-- <script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script> -->
<!-- End test script -->
<div id="main-wrapper">
<header id="header">
<title>Great Guitars Landing Page</title>
<nav id="nav-bar">
<div id="nav-bar-r">
<img src="./media-images/logo-guitar-c.png" id="header-img" alt="logo company">
</div>
<div id="nav-bar-l">
<p class="text-link"><a href="#features" class="nav-link">Guitar's Info</a></p>
<p class="text-link"><a href="#how-it-works" class="nav-link">Guitar Models</a></p>
<p class="text-link"><a href="#prices" class="nav-link">Prices</a></p>
</div>
</nav>
</header>
<main id="main">
<!-- <p>Ipsen lorem asdlkja adsljlasd alklasd alkjlka sdljal sldkjalk</p> -->
<div id="mailer">
<form id="form" action="https://www.freecodecamp.com/email-submit">
<label for="email" class="text-g">Subscribe Now: <input name="email" type="email" id="email" placeholder="enter e-mail here" required></label>
<input id="submit" type="submit" class="btn" value="GET STARTED"></input>
</form>
</div>
<div id="features">
<div class="feature-c">
<img src="./media-images/wood.jpg" class="img-fc">
<p class="text-g">We offer you the best wood in the market. We have a very wide selection of the best trees.</p>
</div>
<div class="feature-c">
<img src="./media-images/work-experience.jpeg" class="img-fc">
<p class="text-g">Since 1918 we have been crafting the best guitars in the State of Missisipi. More than 1 millenium of experience combined within all our artisans.</p>
</div>
<div class="feature-c">
<img src="./media-images/artisans.jpeg" class="img-fc">
<p class="text-g">Using the ancient knowledge, that has been passing by our 3 generations of artisans, we can assure you a finest quality work on every instrument we craft.</p>
</div>
<div id="how-it-works">
<div id="video-c">
<p class="text-g">Take a look on our amazing process of building a great guitar in just a few hours:</p>
<iframe id="video" width="560" height="315" src="https://www.youtube.com/embed/0l0cbazB1DI" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div id="prices">
<div id="products-c">
<div class="guitar-p" id="product-1">
<p>GUITAR M-01XL</p>
<p>$1,200</p>
<p>This models was inspired by our greates artisan by the commands of the one and only Jimmy Hendrix.</p>
<button type="submit" name="select-p" id="select-b">SELECT</button>
</div>
<div class="guitar-p" id="product-2">
<p>GUITAR Y-03XXL</p>
<p>$2,200</p>
<p>This models was inspired by our greates artisan by the commands of the one and only Jimmy Hendrix.</p>
<button type="submit" name="select-p" id="select-b">SELECT</button>
</div>
<div class="guitar-p" id="product-3">
<p>GUITAR X-1LW</p>
<p>$1,200</p>
<p>This models was inspired by our greates artisan by the commands of the one and only Jimmy Hendrix.</p>
<button type="submit" name="select-p" id="select-b">SELECT</button>
</div>
</div>
</div>
</div>
</main>
<footer id="footer">
<div id="footer-top">
<p class="text-link">Privacy</p>
<p class="text-link">Terms</p>
<p class="text-link">Contact</p>
</div>
<div id="footer-base">
<p class="text-link">@Copyright 2020 - FCC - @theghost1980</p>
<p class="text-link">Created my free logo at <a href="https://logomakr.com/">LogoMakr.com</a></p>
</div>
</footer>
</div>
</body>
</html>