-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (57 loc) · 2.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Customized T-Shirt</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="heading">
<h1>Customized T-Shirt Order Form</h1>
</div>
<div class="forms">
<div class="perosnal-details-form">
<form action="#">
<label for="name">Full Name:</label><br>
<input type="text" class="text-input" id="name" name="name" placeholder="Enter your full name" required><br><br>
<label for="phone">Phone Number:</label> <br>
<input type="tel" class="text-input" id="phone" name="phone" placeholder="Enter your phone number" pattern="[0-9]{10}" required> <br><br>
<label for="Email">Email id:</label><br>
<input type="email" class="text-input" id="email" name="email" placeholder="Enter your email id" required><br><br>
<label for="address">Address:</label><br>
<textarea id="address" name="address" rows="4" cols="50" placeholder="Enter your address..." required></textarea><br><br>
</form>
</div>
<div class="tshirt-details-form">
<form action="">
<label for="tagline">Tagline on the Shirt:</label><br>
<input type="text" class="text-input" id="tagline" name="tagline" placeholder="Enter the tagline"><br><br>
<label for="color">Choose a color:</label><br>
<select id="color" class="text-input" name="color" required>
<option value="">Select a color</option>
<option value="red"><font size = "4" face="Times New Roman color=red">Red</font></option>
<option value="blue">Blue</option>
<option value="green">Green</option>
<option value="black">Black</option>
<option value="grey">Grey</option>
</select><br><br>
<label for="size">Size:</label><br>
<input type="radio" id="small" name="size" value="small" required>
<label for="small">Small</label>
<input type="radio" id="medium" name="size" value="medium" required>
<label for="medium">Medium</label>
<input type="radio" id="large" name="size" value="large" required>
<label for="large">Large</label><br><br>
<label for="quantity">Quantity:</label><br>
<input type="number" id="quantity" name="quantity" min="1" value="1" max="70" placeholder="Enter the quantity" required><br><br>
<label for="delivery_date">Delivery Date:</label><br>
<input type="date" class="text-input" id="delivery_date" name="delivery_date" min="2023-08-04" required><br><br>
</form>
</div>
</div>
</body>
</html>