forked from Easybuoy/sca_javascript_tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (29 loc) · 1.09 KB
/
index.html
File metadata and controls
30 lines (29 loc) · 1.09 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Courgette&family=Open+Sans&display=swap" rel="stylesheet"> <link rel="stylesheet" href="css/style.css">
<title>Todo app</title>
</head>
<body>
<div class="inner-div">
<h2 class="header">Things to do</h2>
<input type="text" id="input">
<button id="enterBtn">Enter</button>
<hr>
<ul>
</ul>
<button id="clearTodo">Clear Task</button>
</div>
<footer >
<div class="footer">
<p>Made with ❤ by that_yhemmygirl</p>
</div>
</footer>
<script src="script/script.js"></script>
</body>
</html>