-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
60 lines (52 loc) · 1.61 KB
/
about.html
File metadata and controls
60 lines (52 loc) · 1.61 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
<!DOCTYPE html>
<html>
<head>
<title>Impact Todo App</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">
</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="about.html">About</a></li>
</ul>
</nav>
<!-- About the App -->
<main id="about" class="row flex-1 center">
<div class="col m-0">
<p>
Impact Todo is a simple todo app with basic features.
</p>
<p>
Created by <a href="https://impactbyte.com" target="_blank">Impact Byte</a>.
</p>
<p>
<b>Features:</b>
<ul>
<li>Create todo</li>
<li>Read todo</li>
<li>Delete todo</li>
</ul>
</p>
</div>
</main>
<!-- Footer -->
<footer id="footer" class="row horizontal-center background-red footer">
<small>Copyright 2018 © Impact Byte</small>
</footer>
</div>
</body>
</html>