generated from imd1005-web-development-winter-2023/assignment-03-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (53 loc) · 1.79 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Set the page title -->
<title>Reminders</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" />
<!-- We are using a CSS Reset file to standardize browser default css -->
<link rel="stylesheet" href="reset.css" />
<!-- This is where all of our awesome CSS code goes -->
<link rel="stylesheet" href="style.css" />
<!-- Set the Favicon -->
<link rel="icon shortcut" href="images/check.png">
</head>
<body>
<!--
ADD YOUR ASSIGNMENT 03 CODE
YOU MAY REMOVE THE BOILERPLATE CODE BELOW
IMPORTANT CHECKLIST:
- Are users able to create and delete to do list items?
- Have you set a favicon? (included - but it's a rocket)
- Do you have a css reset file? (included)
- 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>
<h1>Reminders</h1>
<form class="add-reminder">
<input
type="text"
id="new-reminder-input"
placeholder="New Reminder..."
/>
<input
type="submit"
id="new-reminder-submit"
value="+"
/>
</form>
<ul class="reminder-list">
<li>New Reminder</li>
</ul>
</main>
<footer>
<img class="footer--logo" src="images/logo.png" alt="Logo of game"/>
<p>© Copyright 2018-2023, Dead by Design. All Rights Reserved</p>
</footer>
<!-- This is where we add our awesome JavaScript code -->
<script src="./main.js"></script>
</body>
</html>