-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (106 loc) · 3.3 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
<!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="styles.css>
</head>
<body>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<div class="main">
<header id="header">
<img id="header-img" src="assets/SoccerLogo.jpg" alt="Logo">
<nav id="nav-bar">
<ul>
<li><a href="#features" id="nav-link">Playes</a></li>
<li><a href="#video" id="nav-link">Skills</a></li>
<li><a href="#pricing" id="nav-link">Products</a></li>
</ul>
</nav>
</header>
<div class="container subscribe">
<h2>Soccer Originals</h2>
<form action="https://www.freecodecamp.com/email-submit" id="form">
<input id="email" type="email" placeholder="Enter Your Eemail address">
<input id="input" type="submit" value="Get Started">
</form>
</div>
<section id="featured" class="container">
<div class="featured=wrapper"></div>
<div class="featured-icon">
<i class="fas fa-business-time"></i>
</div>
<div class="feature-text"></div>
<h3>The World's Best Soccer-Related Materials</h3>
<p>We Feature the worlds's Best Soccer Gear and Equipment.</p>
</div>
</div>
<div class="featured=wrapper"></div>
<div class="featured-icon">
<i class="fas fa-battery-three-quarters"></i>
</div>
<div class="feature-text"></div>
<h3>Fast Shipping</h3>
<p>You will receive your order as quickly as possible. We also provide free returns if you are not satisfied.</p>
</div>
</div>
<div class="featured=wrapper"></div>
<div class="featured-icon">
<i class="fas fa-fire"></i>
</div>
<div class="feature-text"></div>
<h3>Quality Assurance</h3>
<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="video">
<iframe width="908" height="511" src="https://www.youtube.com/embed/WXg8P0u9W9I" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</section>
<section id="pricing">
<div class="container pricing-wrapper">
<div class="pricing-box">
<h4>Soocer Cleats</h4>
<p class="price">$50 to $200</p>
<p>lorem ipsum</p>
<p>lorem ipsum</p>
<p>lorem ipsum</p>
<p>lorem ipsum</p>
<a href="" class="btn">Select</a>
</div>
<div class="pricing-box">
<h4>Balls</h4>
<p class="price">$20 to $100</p>
<p>lorem ipsum</p>
<p>lorem ipsum</p>
<p>lorem ipsum</p>
<p>lorem ipsum</p>
<a href="" class="btn">Select</a>
</div>
<div class="pricing-box">
<h4>Memorabilia</h4>
<p class="price">$5 to $700</p>
<p>lorem ipsum</p>
<p>lorem ipsum</p>
<p>lorem ipsum</p>
<p>lorem ipsum</p>
<a href="" class="btn">Select</a>
</div>
</div>
</section>
<footer>
<div class="fotter-nav">
<ul>
<li><a href="">Privacy</li>
<li><a href="">Terms</li>
<li><a href="">Contact</li>
</ul>
</div>
<div class="footer-copy"></div>
<p>Copyright 2021, Original Ballas</p>
</footer>
</div>
</body>
</html>