forked from skiadas/WebAppsLabs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.html
More file actions
22 lines (21 loc) · 875 Bytes
/
sample.html
File metadata and controls
22 lines (21 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="ourModifications.css" />
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
</head>
<body>
<!-- This part has the contents of the page -->
<div id="main">
<h3>A list of things!</h3>
<!-- This list will be populated from our code -->
<ul>
<li><span>Task 1</span><input type="button" class="remove" value="Remove"></li>
<li><span>Task 2</span><input type="button" class="remove" value="Remove"></li>
<li><span>A longer title</span><input type="button" class="remove" value="Remove"></li>
<li><input type="text" class="edit" value="Task in edit mode"><span class="hidden">Task in edit mode</span><input type="button" class="remove hidden" value="Remove"></li>
</ul>
<input type="button" value="Add">
</div>
</body>
</html>