-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
123 lines (120 loc) · 4.34 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
<!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" />
<link rel="stylesheet" href="styles.css" />
<title>Product Landing page</title>
</head>
<body>
<section id="hero">
<header id="header">
<div id="header__navigation">
<div class="header__logo">
<img
src="https://img.icons8.com/dotty/80/FFFFFF/sword--v1.png"
alt="logo"
id="header-img"
/>
<h2 class="company-name">swordmanship</h2>
</div>
<nav id="nav-bar">
<ul>
<li><a href="#about" class="nav-link">About</a></li>
<li><a href="#pricing" class="nav-link">Pricing</a></li>
<li><a href="#shipping" class="nav-link">Shipping</a></li>
</ul>
</nav>
</div>
</header>
<div id="hero__title">
<h1>Best Sword Crafting</h1>
<a class="btn btn-title">Shop Now</a>
</div>
</section>
<!-- ABOUT SECTION -->
<section id="about">
<h2 class="section-title">Follow our work - Keep Updated</h2>
<div class="flex">
<iframe src="https://www.youtube.com/embed/UbSrnjNGBdA" id="video">
</iframe>
<div class="form-section">
<h3>Wanna stay in touch?</h3>
<form action="https://www.freecodecamp.com/email-submit" id="form">
<input
type="email"
id="email"
name="email"
placeholder="enter your email here"
/>
<input type="submit" id="submit" value="send" class="btn" />
</form>
</div>
</div>
</section>
<section id="pricing">
<h2 class="section-title">Pricing</h2>
<div class="flex">
<div class="card">
<img src="https://raw.githubusercontent.com/CallensJ/swords-landing-page/main/assets/axe.jpg" alt="sword" id="product-img" />
<h3>Norman Sword</h3>
<p class="price">$1999.99</p>
<p class="text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus in
quam tristique, aliquam lorem sed, auctor metus. Integer a aliquam.
</p>
<a href="#" class="btn btn-gold">Order now</a>
</div>
<div class="card">
<img src="https://raw.githubusercontent.com/CallensJ/swords-landing-page/main/assets/sword1.jpg" alt="sword2" id="product-img" />
<h3>Middle Age Sword</h3>
<p class="price">$519.99</p>
<p class="text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus in
quam tristique, aliquam lorem sed, auctor metus. Integer a aliquam.
</p>
<a href="#" class="btn btn-gold">Order now</a>
</div>
<div class="card">
<img src="https://raw.githubusercontent.com/CallensJ/swords-landing-page/main/assets/sword2.jpg" alt="sword 3" id="product-img" />
<h3>Damas Longsword</h3>
<p class="price">$2019.00</p>
<p class="text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus in
quam tristique, aliquam lorem sed, auctor metus. Integer a aliquam.
</p>
<a href="#" class="btn btn-gold">Order now</a>
</div>
</div>
</section>
<section id="shipping">
<div class="shipping-bloc">
<h3>Free Shipping</h3>
<div class="content">
<img src="https://img.icons8.com/ios/100/null/free-shipping.png" />
<p>Shippig is free in the country</p>
</div>
</div>
<div class="shipping-bloc">
<h3>Carve your name</h3>
<div class="content">
<img src="https://img.icons8.com/ios/100/null/ball-point-pen.png" />
<p>Cuztomize and carve your own name on the sword</p>
</div>
</div>
<div class="shipping-bloc">
<h3>Build to last</h3>
<div class="content">
<img src="https://img.icons8.com/ios/100/null/fit.png" />
<p>Our swords and made with the finest metal you can have</p>
</div>
</div>
</section>
<footer id="footer">
<p>
Copyright swordmanship all right reserved.
</p>
</footer>
</body>
</html>