-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·97 lines (88 loc) · 2.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sewing Machine Website</title>
<link rel="stylesheet" href="./reset.css" />
<link rel="stylesheet" href="./zoje.css" />
</head>
<body>
<!-- Nav -->
<div>
<nav>
<ul class="navbar">
<li><a href="#">Home</a></li>
<li class="dropdown">
<a href="#">Products</a>
<ul class="dropdown-content">
<li><a href="./product/product.html">Sewing Machines</a></li>
<li><a href="#">Accessories</a></li>
</ul>
</li>
<li class="title">
<h1>Zoje Sewing Machines</h1>
</li>
<li><a href="./aboutUs/aboutUs.html">About Us</a></li>
<li><a href="./contact/contact.html">Contact</a></li>
</ul>
</nav>
</div>
<div class="main">
<!-- <div class="container"></div> -->
<h2>
Unleash Your Creativity with Zoje Sewing Machines <br />
- Stitching Perfection at Your Fingertips!
</h2>
</div>
<div class="products">
<h2>Best Selling :</h2>
<section class="product-box">
<section class="product-img first"></section>
<section class="product-specs">
<p>product Name: <b>A8100-D4-G</b></p>
<p>motor power: <b>220v / 500w</b></p>
<p>available colors: <b class="silver">silver</b> <i>|</i> <b class="yellow">yellow</b> <i>|</i> <b
class="green">green</b></p>
<div class="cart-button">
<button>Add to Cart >></button>
</div>
</section>
</section>
<section class="product-box">
<section class="product-img second"></section>
<section class="product-specs">
<p>product Name: <b>ZJ8000C-D4J-G-02</b></p>
<p>motor power: <b>220v / 500w</b></p>
<p>available colors: <b class="silver">silver</b> <i>|</i> <b class="yellow">yellow</b></p>
<div class="cart-button">
<button>Add to Cart >></button>
</div>
</section>
</section>
<section class="product-box">
<section class="product-img third"></section>
<section class="product-specs">
<p>product Name: <b>ZJ-430DH-04A</b></p>
<p>motor power: <b>220v / 500w</b></p>
<p>available colors: <b class="green">green</b> <i>|</i> <b class="silver">silver</b></p>
<div class="cart-button">
<button>Add to Cart >></button>
</div>
</section>
</section>
</div>
<footer>
<ul class="footer-nav">
<li><a href="#" class="active">Home</a></li>
<li><a href="./product/product.html">Products</a></li>
<li><a href="./aboutUs/aboutUs.html">About Us</a></li>
<li><a href="./contact/contact.html">Contact</a></li>
</ul>
<div class="footer-social">
<a class="facebook" href="#"></a>
<a class="instagram" href="#"></a>
</div>
</footer>
</body>
</html>