-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (33 loc) · 1006 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
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./assets/styles.css">
<meta charset="UTF-8">
<title>To do list project</title>
<script src="./assets/script.js">
</script>
</head>
<body>
<header>
<img src="assets/trello.png" alt="logo">
</header>
<main>
<div>
<input id="addRow" type="button" class="button" value="Add a card">
</div>
<div id="simpleModal" class="modal">
<div class="modal-content">
<span class="closeBtn">×</span>
<p class="onrow"></p>
<p class="TitleChangeTitle">Change title</p>
<input id="changetitle">
<p class="TitleChangeTask">Change task</p>
<textarea id="changetask"></textarea>
<button class="popupbutton">Change</button>
</div>
</div>
</main>
<footer>
</footer>
</body>
</html>