-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddress.html
More file actions
48 lines (39 loc) · 1.83 KB
/
Address.html
File metadata and controls
48 lines (39 loc) · 1.83 KB
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
<!DOCTYPE html>
<html>
<div class="container">
<h2><b>Address Book Application</b></h2>
</div>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<script src="Address.js">
</script>
<link rel="stylesheet" href="Address.css">
</head>
<body>
<form method="POST">
<div class="container-sm border">
<div class="form-group col-md-8" style="display: -webkit-box;">
<label style="margin: 22px;display: inline;"><b>Enter Name</b></label>
<input type="text" id="Pname" class="form-control"><br>
<p id="name"></p>
</div>
<div class="form-group col-md-8" style="display: -webkit-box;">
<label style="margin: 22px;display: inline;"><b>Enter Street</b></label>
<input type="text" id="Street" class="form-control"><br>
<p id="sname"></p>
</div>
<div class="form-group col-md-8" style="display: -webkit-box;">
<label style="margin: 29px;display: inline;"><b>Enter City</b></label>
<input type="text" id="City" class="form-control"><br>
<p id="cname"></p>
</div>
<div class="form-group col-md-8" style="display: -webkit-box;">
<label style="margin: 13px;display: inline;"><b>Enter Pincode</b></label>
<input type="text" id="Pincode" maxlength="6" placeholder="Enter 6 digits pincode " class="form-control"><br>
<p id="piname"></p>
</div>
<button type="button" value="submit" class="btn btn-primary" onclick="validateForm()">Submit</button>
</div>
</form>
</body>
</html>