-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 1.2 KB
/
index.html
File metadata and controls
45 lines (45 loc) · 1.2 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="description" content="a neat and simplistic to-do list in your web browser." />
<meta name="theme-color" content="#1dd1a1" />
<meta name="viewport" content="width=device-width" />
<title>mintodo</title>
<link rel="stylesheet" href="style.css" />
<script type="module" src="script.js"></script>
<link rel="icon" href="icon.svg" />
</head>
<body>
<header>
<h1>mintodo</h1>
<p>a neat and simplistic to-do list in your web browser.</p>
</header>
<main>
<noscript>
<header>
<h2>javascript is required</h2>
<p>enable it for this website to be functional.</p>
</header>
</noscript>
<h2>add to-do</h2>
<form>
<label>
what's on your mind?
<input autofocus />
</label>
<button>add</button>
</form>
<div></div>
<label>
<input type="checkbox" />
<span></span>
</label>
</main>
<footer>
<a href="https://github.com/often/mintodo" target="_blank" rel="noopener">
<img src="github.png" alt="" />
</a>
</footer>
</body>
</html>