-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (33 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="Mistakes">
<meta property="og:description" content="A site to record mistakes made by people. Similar to a ToDo with up and down votes">
<meta property="og:site_name" content="Mistakes">
<meta property="og:image" content="https://raw.githubusercontent.com/cookieukw/Mistakes/main/icons/alert.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:alt" content="A red-colored exclamation icon ">
<meta property="og:type" content="website">
<title>Mistakes</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<p class="item">This is a site where you "register" a person's name and you add the number of times they made mistakes with you or helped you. </p>
<div id="text_area">
<input
type="text"
id="text"
placeholder="Type here..."
class="item">
<button class="button" id="add">Add </button>
<button onclick="clearAll()" class="button" id="clear">Remove all </button>
</div>
<ul id="list" class="item">
</ul>
<script src="js/functions.js"></script>
<script src="js/main.js"></script>
</body>
</html>