-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (33 loc) · 1021 Bytes
/
index.html
File metadata and controls
39 lines (33 loc) · 1021 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!-- viewport using in RWD -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<div class="bulletin">
<p class="topic">My ToDo List</p>
<div class="innerButton">
<input id="toDoInput" type="text" class="input" />
<button id="addButton" class="addButton">ADD</button>
</div>
<!--In order not to change the style of topic and innerButton-->
<div class="toDoList">
<!-- Example :
<div class="toDoItem">
<div class="leftBox">
<input type="checkBox" name="toDoDone" class="checkBox" />
<p class="toDo">123</p>
</div>
<button class="deleteButton">X</button>
</div>
-->
</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>