forked from shyam-j10/ZARA-Fashion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
163 lines (161 loc) · 5.53 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!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>ZARA Fashion's</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div class="container">
<div class="nav-bar">
<img
src="./logo1.png"
alt="skcetlogo"
srcset=""
width="8%"
height="50px"
/>
<div class="nav-items">
<button class="men-direct">Men Clothing</button>
<button class="women-direct">Women Clothing</button>
<button class="shoe-direct">Unisex Shoes</button>
<button class="con-direct">Contact</button>
</div>
<div class="sign">
<button id="in">Sign In</button>
<button id="up">Sign Up</button>
</div>
</div>
<div class="home">
<img src="./model2.jpg" alt="" srcset="" class="pos-left" />
<button id="men" class="men-direct">SHOP MEN's</button>
<div class="details">
<center>
<h1>NEW ARRIVALS</h1>
</center>
</div>
<img src="./model1.png" alt="" srcset="" class="pos-right" id="right" />
<button id="women" class="women-direct">SHOP WOMEN's</button>
</div>
<div class="mens">
<center><h1>MEN's CLOTHING</h1></center>
<img src="./mens3.jpg" alt="" />
<img src="./mens2.webp" alt="" srcset="" />
<img src="./mens1.jpg" alt="" />
<img src="./mens4.jpg" alt="" />
<p>Men's Sweatshirt,Hoodies,Joggers,Cargo Pants under Rs.2000</p>
<button class="men-contact-direct">CONTACT US TO ORDER</button>
</div>
<div class="womens">
<center><h1>WOMEN's CLOTHING</h1></center>
<img src="./women1.jpg" alt="" />
<img src="./women2.jpg" alt="" srcset="" />
<img src="./women3.jpg" alt="" />
<img src="./women4.webp" alt="" />
<p>Women's LongSuit,Jackets,Jumpsuit,Flared Jeans under Rs.2000</p>
<button class="women-contact-direct">CONTACT US TO ORDER</button>
</div>
<div class="shoe">
<center><h1>UNISEX SHOES</h1></center>
<img src="./shoe1.jpg" alt="" />
<img src="./shoe2.jpg" alt="" srcset="" />
<img src="./shoe3.jpg" alt="" />
<img src="./shoe4.jpg" alt="" />
<p>Unisex Casual and Formal Shoes under Rs.5000</p>
<button class="shoe-contact-direct">CONTACT US TO ORDER</button>
</div>
<div class="contact">
<center><h1>GET IN TOUCH!</h1></center>
<div class="details">
<div class="address">
<h3>Showroom</h3>
<p>
No.382, DB Road Old, Opposite To Reliance Footprint, R.S. Puram,
Rs Puram, Coimbatore
</p>
</div>
<div class="phone">
<h3>Phone</h3>
<p>+91 8946008461</p>
</div>
<div class="mail">
<h3>Email</h3>
<p>[email protected]</p>
</div>
</div>
<div class="order">
<table>
<form>
<tr>
<td>
<label for="fullname">Enter your FullName:</label>
</td>
<td>
<input type="text" name="fullname" id="fullname" />
</td>
</tr>
<!-- <br /><br /> -->
<tr>
<td>
<label for="address">Enter your Adreess:</label>
</td>
<td>
<input type="text" name="address" id="address" />
</td>
</tr>
<!-- <br></br> -->
<tr>
<td>
<label for="phone">Enter your Phone Number:</label>
</td>
<td>
<input type="number" name="phone" id="phone " />
</td>
</tr>
<tr>
<td>
<label for="order">Enter your Orders:</label>
</td>
<td>
<input type="text" name="order" id="order" />
</td>
</tr>
<tr>
<td>Choose your Payment Method:</td>
<td>
<input
type="radio"
id="cod"
name="payment"
value="Cash on Delivery"
/>
<label for="cod">Cash on Delivery</label>
<input type="radio" id="UPI" name="payment" value="UPI" />
<label for="UPI">UPI</label>
<input
type="radio"
id="net"
name="payment"
value="NET BANKING"
/>
<label for="NET BANKING">Net Banking</label>
</td>
</tr>
<button type="submit" id="sub">CONFIRM YOUR ORDER</button>
<!-- </center> -->
</tr>
</form>
</table>
</div>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>