-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
89 lines (68 loc) · 2.88 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<html lang="en">
<head>
<title>Contact V2</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--===============================================================================================-->
<link rel="icon" type="image/png" href="images/icons/favicon.ico"/>
<link rel="manifest" href="manifest.json">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!--===============================================================================================-->
<link >
<link rel="stylesheet" type="text/css" href="main.css">
<!--===============================================================================================-->
</head>
<body>
<div class="bg-contact2" style="background-image: url('images/bg-01.jpg');">
<div class="container-contact2">
<div class="wrap-contact2">
<form class="contact2-form validate-form">
<span class="contact2-form-title">
Address book
</span>
<div class="wrap-input2 validate-input" data-validate="Name is required">
<input require id="name" class="input2" type="text" value="" placeholder="name" name="name">
</div>
<div class="wrap-input2 validate-input" data-validate="Name is required">
<input require id="tel" class="input2" type="text" placeholder="phone no" name="tel">
</div>
<div class="wrap-input2 validate-input" data-validate = "Valid email is required: [email protected]">
<input require id="ml" class="input2" type="text" placeholder="email" name="email">
</div>
<div class="container-contact2-form-btn">
<div class="wrap-contact2-form-btn">
<div class="contact2-form-bgbtn"></div>
<div onclick="stordb()" class="contact2-form-btn">
ADD To address book
</div>
</div>
</div>
</form>
</div>
</div>
</div>
<br>
<table class="table">
<thead>
<tr>
<th>Name</th>
<th>Phone</th>
<th>Email</th>
<th>Setting</th>
</tr>
</thead >
<tbody id="alldetails">
</tbody>
</table>
<!--===============================================================================================-->
<!--===============================================================================================-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-23581568-13"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script src="main.js"></script>
<script>
</script>
</body>
</html>