-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (50 loc) · 2.04 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
<!DOCTYPE html>
<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">
<title>Lucas' To do List</title>
<link rel="stylesheet" href="css/index.css">
<script src="https://kit.fontawesome.com/c941ba5904.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="wrapper">
<header class="l-header">
<h3>Things you better start doing</h3>
</header>
<main class="l-main">
<div class="c-to-do-list">
</div>
<a class='c-main__new-task' onclick="focusOn()">+ New task</a>
<form>
<input type="text" class="c-to-do__input" placeholder="Insert your new task" autofocus
onfocusout="focusOut()" onkeyup="verifyText()">
</form>
</main>
<footer class="l-footer">
<span class="c-footer__credits">?</span>
<h4 class="c-footer__title">Check out my other projects</h4>
<div class="c-footer__social">
<ul>
<a href="https://github.com/lucas-luiz" target="_blank">
<li><i class="fab fa-github-square"></i></li>
</a>
<a href="#">
<li><i class="fab fa-instagram"></i></li>
</a>
</ul>
</div>
</footer>
</div>
</body>
<script type="text/javascript" src="js/focusOn.js"></script>
<script type="text/javascript" src="js/focusOut.js"></script>
<script type="text/javascript" src="js/checkboxToggle.js"></script>
<script type="text/javascript" src="js/draw.js"></script>
<script type="text/javascript" src="js/inputToggle.js"></script>
<script type="text/javascript" src="js/createTask.js"></script>
<script type="text/javascript" src="js/deleteTask.js"></script>
<script type="text/javascript" src="js/verifyText.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</html>