-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathDetails For Checkout HTML.html
81 lines (41 loc) · 2.91 KB
/
Details For Checkout HTML.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="contact-type" content="text/html; charset-utf-8"/>
<meta name="viewport" content="width-device-width,initial-scale=1,mininmum-scale=1,maximum-scale=1,user-scalable=no">
<title>
Details for Delivery
</title>
<link href="Details For Checkout CSS.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" type="image/jpg" href="C:\Users\hp\Desktop\College\First Semester\Introduction To Web Technologies\Notepad ++ Files\Project\favicon.ico"/>
<script src="Details For Checkout JS.js"></script>
</head>
<body>
<div class="contact-in">
<div class="contact-map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d224345.83923192866!2d77.06889754725779!3d28.52758200617606!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x390cfd5b347eb62d%3A0x52c2b7494e204dce!2sNew%20Delhi%2C%20Delhi!5e0!3m2!1sen!2sin!4v1642929688022!5m2!1sen!2sin" width="100%" height="auto" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
<div class="contact-form">
<h1 align = 'center'>
Details For Delivery
</h1>
<div id="error_message"></div>
<form class = 'address_form' onsubmit="return validate_form();">
<input type="text" placeholder="Name" class="contact-form-txt" id = 'name' required/>
<input type="text" placeholder="Address" class="contact-form-txt" id = 'address' required/>
<input type="text" placeholder="Email-ID" class="contact-form-txt" id = 'email' required/>
<input type="text" placeholder="Locality/Apartment" class="contact-form-txt" required/>
<input type="text" placeholder="Pincode" class="contact-form-txt" id = 'pincode' required/>
<input type="text" placeholder="Contact No." class="contact-form-txt" id = 'phone' required/>
<input type="text" placeholder="Date (Format: dd/mm/yyyy)" class="contact-form-txt" id = 'date' required/>
<input type="text" placeholder="Time Slot (Format: Starting Time - Ending Time. Give a duration of 2 hours.)" class="contact-form-txt" id = 'time' required/>
<button type="submit" class="contact-form-btn" id = 'submit'>
<a href = 'Payment HTML.html' style = "cursor: pointer; text-decoration: none; color: white;">
Submit
</a>
</button>
</form>
</div>
</div>
</body>
</html>