-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
35 lines (30 loc) · 929 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>To Do List</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="mobile.css">
</head>
<body>
<header></header>
<main>
<div id="printPaneToDoList">
<h1>To Do List</h1>
<input type="text">
<button onclick="addDataWithButton()">Add</button>
<div id="toDoContayner">
<div class="item">
<div class="text_elem">
<!--<span></span>-->
</div>
<button id="positButtonFeedback" class="grow_elem"><img id="positiveFeedback" src="img.png" alt="Error"></button>
<button id="negatButtonFeedbac" class="grow_elem"><img id="negativeFeedback" src="img_1.png" alt="Error"></button>
</div>
</div>
</div>
</main>
<footer></footer>
<script src="index.js"></script>
</body>
</html>