-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaddress.html
34 lines (32 loc) · 1.16 KB
/
address.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Address</title>
<link rel="stylesheet" href="address.css">
</head>
<body>
<div id="container">
<div>
<h2>Address</h2>
<input id="house" type="number" placeholder="House No.">
<input id="lane" type="number" placeholder="Lane No.">
<input id="local" type="text" placeholder="Locality">
<input id="land" type="text" placeholder="Near by Landmark">
<input id="city" type="text" placeholder="City">
<input id="dist" type="text" placeholder="District">
<input id="state" type="text" placeholder="State">
<input id="pin" type="number" placeholder="Pincode">
<button onclick="myFunction()">Save Address</button>
</div>
<div>
<h2>Saved Address</h2>
<div id="add"></div>
<button onclick="myFunction2()">Continue</button>
</div>
</div>
</body>
</html>
<script src="address.js"></script>