-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (28 loc) · 925 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<form action="">
<input type="text" id="name" placeholder="enter your name"> <br><br>
<input type="email" id="mail" placeholder="enter your mail"> <br><br>
<input type="text" id="phone" placeholder="enter your phone number"> <br><br>
</form>
<input type="button" id="addBtn" value="Add"><br><br>
<input type="button" id="getContact" value="get all contacs"><br><br>
<div id="container"></div>
<table border="1">
<tr>
<td>ID</td>
<td>Name</td>
<td>Phone</td>
<td>Actions</td>
</tr>
</table>
<script src="contact_list.js"> </script>
</body>
</html>