-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
179 lines (156 loc) · 5.21 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<html>
<head>
<link rel="stylesheet" href="src/styles.css" />
<title>jeeb dhili kar be !!</title>
<link rel = "icon" href ="goku.png"/>
</head>
<body>
<div class="main__container">
<header>
<h1 >Checkout Page</h1>
</header>
<main >
<aside class="cart__container">
<div class="cart__items">
<figure class="cart__item">
<img src="src/assets/photo1.png" />
<figcaption class="cart__item-text">
<h3>Vintage Backbag</h3>
<p>
<span class="current__price">$500000000000</span>
<small><sup class="old__price">$5000000000000</sup></small>
</p>
<div class="control__item">
<button>-</button>
<span class="item__stock">1</span>
<button>+</button>
</div>
</figcaption>
</figure>
<figure class="cart__item">
<img src="src/assets/photo2.png" />
<figcaption class="cart__item-text">
<h3>Levi Shoes</h3>
<p>
<span class="current__price">teri aukat nahi ha re</span>
<small><sub class="old__price">$12000000000000000000</sub></small>
</p>
<div class="control__item">
<button>-</button>
<span class="item__stock">1</span>
<button>+</button>
</div>
</figcaption>
</figure>
</div>
<table class="cart__table">
<tbody>
<tr>
<th>Shipping</th>
<td>$infinite</td>
</tr>
<tr>
<th>Total</th>
<td>emi bharo zindagi bhar</td>
</tr>
</tbody>
</table>
</aside>
<form class="form__container">
<fieldset class="form__group">
<legend class="form__title">Contact information</legend>
<label for=""> Email </label>
<div class="form-control">
<i class="bx bxs-envelope"></i>
<input
type="email"
autocomplete="off"
placeholder="Enter your email..."
name="email"
required/>
</div>
<label for="">Phone</label>
<div class="form-control">
<i class="bx bxs-phone"></i>
<input
type="tel"
autocomplete="off"
placeholder="Enter your phone..."
name="phone"
required/>
</div>
</fieldset>
<fieldset class="form__group">
<legend class="form__title">Shipping Address</legend>
<label for="">Full name</label>
<div class="form-control">
<i class="bx bxs-user"></i>
<input
name="name"
type="text"
placeholder="Enter your name..."
required/>
</div>
<label for="">Address</label>
<div class="form-control">
<i class="bx bxs-home"></i>
<input
name="address"
type="text"
placeholder="Enter your address..."
required/>
</div>
<label for="">City</label>
<div class="form-control">
<i class="bx bxs-building-house"></i>
<input
name="city"
type="text"
autocomplete="off"
placeholder="Enter your city..."
required/>
</div>
<div class="form__row">
<div>
<label for="country"> Country </label>
<div class="form-control">
<i class="bx bxs-building-house"></i>
<select name="country" id="country" required>
<option value="">Select a country</option>
<option value="India">India</option>
</select>
</div>
</div>
<div>
<label for=""> Postal Code </label>
<div class="form-control">
<i class="bx bx-mail-send"></i>
<input
name="code"
type="number"
maxlength="100"
placeholder="Postal Code..."
required
/>
</div>
</div>
</div>
<label for="privace">
<input type="checkbox" name="save" id="privace" />
Save this information for next time
</label>
</fieldset>
<nav class="form__footer">
<button type="submit" class="btn btn-primary">Continue</button>
</nav>
</form>
</main>
<footer>
<p>
</strong>
Cosmoids.com
</p>
</footer>
</div>
</body>
</html>