-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarkup.html
40 lines (31 loc) · 939 Bytes
/
markup.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title> MP1 CS498</title>
<script type="text/javascript" src="jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="custom.js"> </script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div>
<h1>
<div id="input_title">
hello
</div>
</h1>
<div id="list">
<input type="button" id="left_list" class="button_class" value="<" </button>
<input class="button_class" type="button" id="right_list" value=">" </button>
<div id="center">
<input type="text" id="new_item" />
<button class="button_class" id="add_new_item">Add</button>
<!--<button class="button_class" id="set_title">Set Title</button>-->
<input class="button_class" type="button" id="remove_all_items" value="Remove Completed" </button>
</div>
<ul id="mylist">
</ul>
</div>
</div>
</body>
</html>