-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp-todo-oop.html
More file actions
57 lines (46 loc) · 1.66 KB
/
app-todo-oop.html
File metadata and controls
57 lines (46 loc) · 1.66 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
<!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">
</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">
<p id="content">
See the <code>console</code> in Dev Tools.
</p>
</div>
</main>
<script src="./scripts/app-todo-oop.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>