-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex3.html
41 lines (40 loc) · 1.55 KB
/
index3.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
<!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">
<title>Modular JS</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
<link rel="stylesheet" href="css/style2.css" />
</head>
<body>
<div class="parent">
<div class="item">
<h3>Stats</h3>
<p>people: <span id="count"></span></p>
</div>
<div>
<h3>People</h3>
</div>
<div>
<input id="text-input" type="text">
<input id="add-button" type="button" value="Add Person">
</div>
<ul id="people-list">
<li>
<span class="name">David</span>
<span class="del">×</span>
</li>
<li>
<span class="name">Echo</span>
<span class="del">×</span>
</li>
</ul>
</div>
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.min.js"></script>
<script src="js/events.js" type="text/javascript" charset="utf-8"></script>
<script src="js/stats-module-revealing3.js" type="text/javascript" charset="utf-8"></script>
<script src="js/people-module-revealing3.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>