-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (61 loc) · 2.13 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
<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.0" />
<link rel="icon" type="image/x-icon" href="/images/background.svg" />
<link rel="stylesheet" href="./styles.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
rel="stylesheet"
/>
<title>cy.basicToDo</title>
</head>
<body>
<main class="appContainer">
<section>
<h1>To-Do App</h1>
<div class="addToDoContainer">
<input
id="newToDo"
type="text"
maxlength="60"
placeholder="Add an item"
/>
<button id="addToDoButton" placeholder="Add New ToDo">Add Item</button>
</div>
</section>
<section class="allContainer">
<div class="completeAllContainer">
<h3>COMPLETE ALL</h3>
<input
id="completeAllButton"
class="reallyCompleted ac"
type="checkbox"
/>
<div class="checkAllToDos ac"></div>
</div>
<div class="deleteAllContainer">
<h3>DELETE ALL</h3>
<div id="deleteAllButton" class="deleteAllToDos"></div>
</div>
</section>
<ul id="toDoList">
<template id="toDoItemTemplate">
<li id="toDoItemContainer" class="individualToDo">
<input type="checkbox" class="reallyChecked"/>
<dl class="checkToDo INITIAL_CHECKED_IMG" checked="INITIAL_CHECKED_VALUE"></dl>
<dl class="toDoText INITIAL_CHECKED_STRIKEOUT">ITEM_TEXT</dl>
<input class="savedToDoInput" type="text" style="display: none">
<dl class="editToDo"></dl>
<dl class="saveToDo" style="display: none"></dl>
<dl class="deleteToDo"></dl>
</li>
</template>
</ul>
<script type="module" src="./app.js"></script>
</main>
</body>
</html>