-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (45 loc) · 2.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="form-container">
<h1>অর্ডারটি কনফার্ম করতে আপনার নাম, ঠিকানা, মোবাইল নাম্বার, লিখে সাবমিট করুন</h1>
<form action="">
<h3>নিচের ফর্ম পূরন করুন</h3>
<div class="i-field">
<label for="name">আপনার নাম *</label>
<input type="text">
<span>আপনার নাম is required</span>
</div>
<div class="i-field">
<label for="phone">আপনার মোবাইল নম্বর *</label>
<input type="phone">
<span>আপনার মোবাইল নম্বর is required</span>
</div>
<div class="i-field">
<label for="name">আপনার পূর্ণ ঠিকানা *</label>
<input type="text">
<span>আপনার পূর্ণ ঠিকানা is required</span>
</div>
<div class="i-field">
<label for="quantity">আপনার পূর্ণ ঠিকানা *</label>
<select name="quantity" id="">
<option value="0.5">0.5 - kg</option>
<option value="1">1 - kg</option>
<option value="1.5">1.5 - kg</option>
<option value="2">2 - kg</option>
</select>
<span>আপনার পূর্ণ ঠিকানা is required</span>
</div>
</form>
<button>অর্ডার কনফার্ম করুন ৳ 1,990</button>
</div>
</div>
</body>
</html>