-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 1.06 KB
/
index.html
File metadata and controls
28 lines (25 loc) · 1.06 KB
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
<!-- TODO App Project
* Build an App that allows users to make a simple TODO List
* Seems easy, but it will require all your skills that you've used up to this point!
* Refer to the Example in the DSD if you need
* Minimum:
* Use jQuery/JavaScript to allow users to make a list
* Create a button that cleans the todo list
* Challenge:
* Use jQuery/JavaScript to allow users to edit/delete individual posts
* Hints:
* You're going to have to use JavaScript Variables and Arrays to do this project (well)
* Look up JavaScript functions to keep your code DRY (Don't Repeat Yourself)
* If you find yourself writing the same code twice, make it a function!
-->
<!DOCTYPE html>
<html>
<head>
<!-- Title -->
<!-- Remember to Import jQuery from google (https://developers.google.com/speed/libraries/)-->
<!-- Include your JS and CSS Files below! If you don't remember how to, check out your reference table!-->
<!-- Or W3 Schools: http://www.w3schools.com/tags/att_script_src.asp & http://www.w3schools.com/css/css_howto.asp -->
</head>
<body>
</body>
</html>