-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (35 loc) · 1.25 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 lang="en-ca">
<head>
<!-- Set the page title -->
<title>Assignment 04 - Finishing a Todo List App</title>
<!-- Set the charset we're using to UTF-8 -->
<meta charset="utf-8" />
<!-- Set the screens default zoom / scale to 1 -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Specifies the document mode for Internet Explorer -->
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- Set the CSS Reset File -->
<link rel="stylesheet" href="./reset.css" />
<!-- Set the main stylesheet -->
<link rel="stylesheet" href="./style.css" />
<!-- Set the Favicon -->
<link rel="icon" href="./images/favicon/rocket.svg" type="image/svg+xml" />
</head>
<body>
<!--
Assignment 04 - Finishing a Todo List App
Instructions:
Important checklist:
- Are users able to create and delete to do list items?
- Have you set a favicon? (included - but it's a rocket)
- Has a team member conducted a code review and left a GitHub Issue in your repo?
- Have you conducted a code review and left a GitHub Issue on your team member's repo?
-->
<main>
<div id="app"></div>
</main>
<!-- Add JavaScript File -->
<script src="./script.js"></script>
</body>
</html>