-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (77 loc) · 3.06 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
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="refresh" content="600">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Goals</title>
<link rel="apple-touch-icon" sizes="180x180" href="/src/static/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/src/static/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/src/static/favicon/favicon-16x16.png">
<link rel="manifest" href="/src/static/favicon/site.webmanifest">
<link rel="stylesheet" href="/src/css/style.css">
<script type="module" src="/src/main.ts" defer></script>
<script src="https://kit.fontawesome.com/dc8cac840c.js" crossorigin="anonymous"></script>
</head>
<body>
<main>
<h1 class="heading">Goals for today !</h1>
<br>
<h1 class="offscreen">My List</h1>
<section class="newItemEntry">
<h2 class="offscreen">New Item Entry</h2>
<form class="newItemEntry__form" id="itemEntryForm">
<label for="newItem" class="offscreen">Enter a new to do item</label>
<input class="newItemEntry__input" id="newItem" type="text" maxlength="4000" autocomplete="off"
placeholder="Add item" />
<button id="addItem" class="button newItemEntry__button" title="Add new item" aria-label="Add new item to list">
+
</button>
</form>
</section>
<section class="listContainer">
<header class="listTitle">
<h2 id="listName">Goals</h2>
<button id="clearItemsButton" class="button listTitle__button" title="Clear the list"
aria-label="Remove all items from the list">
Clear
</button>
</header>
<hr />
<div class="scrollable">
<ul id="listItems">
<!-- <li class="item">
<input type="checkbox" id="1">
<label for="1">eat</label>
<button class="button">X</button>
</li>
<li class="item">
<input type="checkbox" id="2">
<label for="2">sleep</label>
<button class="button">X</button>
</li>
<li class="item">
<input type="checkbox" id="3">
<label for="3">code</label>
<button class="button">X</button>
</li> -->
</ul>
<br>
</div>
</section>
</main>
<br>
<div class="contactDiv">
<span class = "contactText"> Developer's contacts : </span>
<a href="https://twitter.com/Shashan04932728" class = "socialIcon" target="_blank">
<i class="fa-brands fa-twitter"></i>
</a>
<a href="https://www.linkedin.com/in/shashank-tiwari-128334192/" class="socialIcon" target="_blank">
<i class="fa-brands fa-linkedin"></i>
</a>
<a href="https://github.com/shashank40" class="socialIcon" target="_blank">
<i class="fa-brands fa-github"></i>
</a>
</div>
</body>