-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (46 loc) · 1.62 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/script.js"></script>
<title>Address Book</title>
</head>
<body>
<div class="container">
<h1>Address Book</h1>
<div class="row">
<div class="col-xs-6">
<h2>Add a contact:</h2>
<form id="new-contact">
<div class="form-group">
<label for="new-first-name">First name</label>
<input type="text" class="form-control" id="new-first-name">
</div>
<div class="form-group">
<label for="new-last-name">Last name</label>
<input type="text" class="form-control" id="new-last-name">
</div>
<div class="form-group">
<label for="new-address">Address</label>
<input type="text" class="form-control" id="new-address">
</div>
<button type="submit" class="btn">ADD!</button>
</form>
<h2>Contacts:</h2>
<ul id="contacts">
</ul>
</div>
<div class="col-xs-6">
<div id ="show-contact">
<h2>Add a contact:</h2>
<p>First name: <span class="first-name"></span></p>
<p>Last name: <span class="last-name"></span></p>
<p>Address: <span class="address"></span></p>
</div>
</div>
</div>
</div>
</body>
</html>