-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusman'sindex.html
122 lines (101 loc) · 4.24 KB
/
usman'sindex.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
<!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>Dark Daraz</title>
<!-- for font-awesome --- icons usage -->
<script src="https://kit.fontawesome.com/3aa4a570fe.js" crossorigin="anonymous">
</script>
</head>
<body>
<nav>
<!-- the first nav bar -->
<div id = "horizontal_navBar">
<ul>
<a href = "index.html">
<li>Affilate</li>
</a>
<a href = "index.html">
<li>sell on Dark Daraz</li>
</a>
<a href = "index.html">
<li>customer care</li>
</a>
<a href = "index.html">
<li>track my order</li>
</a>
<a href = "index.html">
<li>login</li>
</a>
<a href = "index.html">
<li>sign up</li>
</a>
<a href = "index.html">
<li>your love</li>
</a>
</ul>
</div>
<!-- making the search bar and the cart -->
<input type="text" placeholder=" search in dark daraz">
<!-- search icon from font-awesome -->
<i class="fas fa-search"></i>
<!-- cart icon from font-awesome -->
<i class="fas fa-shopping-cart "> </i>
<!-- the slider of images -->
<div id="slider">
<!-- making links to be navigatable -->
<a href="index.html"> <img src="images/slider_images/slidePic_1.jpg" alt="will decide later --- also about pictures to use these or nt"></a>
<a href="index.html"> <img src="images/slider_images/sliderPic_2.png" alt="will decide later --- also about pictures to use these or nt"></a>
<a href="index.html"> <img src="images/slider_images/sliderPic_3.jpg" alt="will decide later --- also about pictures to use these or nt"></a>
<a href="index.html"> <img src="images/slider_images/slidePic_4.jpg" alt="will decide later --- also about pictures to use these or nt"></a>
<a href="index.html"> <img src="images/slider_images/slidePic_5.jpg" alt="will decide later --- also about pictures to use these or nt"></a>
<a href="index.html"> <img src="images/slider_images/slidePic_6.jpg" alt="will decide later --- also about pictures to use these or nt"></a>
<a href="index.html"> <img src="images/slider_images/slidePic_7.png" alt="will decide later --- also about pictures to use these or nt"></a>
<a href="index.html"> <img src="images/slider_images/slidePic_8.jpg" alt="will decide later --- also about pictures to use these or nt"></a>
</div>
<!-- the second nav bar -->
<div id = "vertical_navBar">
<ul>
<a href = "index.html">
<li>babies and kids</li>
</a>
<a href = "index.html">
<li>toys</li>
</a>
<a href = "index.html">
<li>electronic appliances</li>
</a>
<a href = "index.html">
<li>electronic devices</li>
</a>
<a href = "index.html">
<li>beauty</li>
</a>
<a href = "index.html">
<li>men's wear</li>
</a>
<a href = "index.html">
<li>women's wear</li>
</a>
<a href = "index.html">
<li>home appliances</li>
</a>
<a href = "index.html">
<li>grocery</li>
</a>
<a href = "index.html">
<li>accessories</li>
</a>
<a href = "index.html">
<li>cars</li>
</a>
<a href = "index.html">
<li>dark daraz special</li>
</a>
</ul>
</div>
</nav>
</body>
</html>