-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelivery-details.html
39 lines (37 loc) · 1.88 KB
/
delivery-details.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/sheryjs/dist/Shery.css" />
<link rel="shortcut icon" href="images/food sea logo.png" type="image/x-icon">
<link rel="stylesheet" href="css/deliverydetailspagestyle.css">
<title>Food Sea | Delivery Details</title>
</head>
<body>
<div id="cursor"></div>
<div id="main">
<div id="form-section">
<div id="heading">Fill Delivery Details</div>
<form action="#">
<label for="name">Your Name</label>
<input type="text" placeholder="Enter your name" class="input-box" id="name">
<label for="phnumber">Your Contact Number</label>
<input type="text" placeholder="Enter your contact number" class="input-box" id="phnumber">
<label for="pincode">Pincode</label>
<input type="text" placeholder="Enter your pincode" class="input-box" id="pincode">
<label for="city">City</label>
<input type="text" placeholder="Enter your city name" class="input-box" id="city">
<label for="address">Your Address</label>
<textarea id="address" cols="30" rows="5" placeholder="Enter your address"></textarea>
</form>
<a href="#" id="proceed">Proceed to payment</a>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"
integrity="sha512-16esztaSRplJROstbIIdwX3N97V1+pZvV33ABoG1H2OyTttBxEGkTsoIVsiP1iaTtM8b3+hu2kB6pQ4Clr5yug=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://kit.fontawesome.com/e04331d407.js" crossorigin="anonymous"></script>
<script src="js/deliverydetails.js"></script>
</body>
</html>