-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.html
More file actions
72 lines (59 loc) · 2.47 KB
/
app.html
File metadata and controls
72 lines (59 loc) · 2.47 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
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<title>Impact Todo</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="./styles/animate.css">
<link rel="stylesheet" href="./styles/index.css">
<link rel="stylesheet" href="./styles/app.css">
<script defer src="https://use.fontawesome.com/releases/v5.0.8/js/all.js" integrity="sha384-SlE991lGASHoBfWbelyBPLsUlwY1GwNDJo3jSJO04KZ33K2bwfV9YBauFfnzvynJ" crossorigin="anonymous"></script>
</head>
<body>
<div class="root container-fluid">
<!-- Header -->
<header id="header" class="row horizontal-center background-header header">
<h1 id="title" class="huge animated tada">
<img src="./assets/images/logo.png" alt="Logo">
<span>Impact Todo</span>
<span class="small">v3</span>
</h1>
</header>
<!-- Navigation -->
<nav id="navigation" class="row horizontal-center background-header white navigation">
<ul class="row space-around">
<li><a href="index.html">Home</a></li>
<li><a href="app.html">App</a></li>
<li><a href="app-jquery.html">jQuery</a></li>
<li><a href="app-todo-oop.html">Todo OOP</a></li>
<li><a href="app-oop.html">OOP</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
<!-- App -->
<main id="app-container" class="app-container row horizontal-center flex-1">
<div id="app-content" class="app-content column horizontal-center">
<div>
<input id="search" class="input-search" type="text" name="search" value="" placeholder="Search todo list">
</div>
<form id="input" class="form-controls row horizontal-center space-between">
<div class="col-9">
<input id="todo" class="input-text" type="text" name="todo" value="" placeholder="What do you want to do?">
</div>
<div class="col-3">
<input id="add" class="button-primary" type="button" name="add" value="Add">
</div>
</form>
<section id="output" class="output-box">
<!-- will be appended with todos -->
</section>
</div>
</main>
<script src="./scripts/moment.min.js" charset="utf-8"></script>
<script src="./scripts/app.js" charset="utf-8"></script>
<!-- Footer -->
<footer id="footer" class="row horizontal-center background-red footer">
<small>Copyright 2018 © Impact Byte</small>
</footer>
</div>
</body>
</html>