-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 902 Bytes
/
index.html
File metadata and controls
28 lines (25 loc) · 902 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Todoz</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="navbar">
<a class="link logo" href="index.html"><img src="images/todoz-logo.png" alt="Todoz logo" width="48">Todoz</a>
<div class="navlink">
<a class="link" href="index.html">Home</a>
<a class="link" href="common/benefits.html">Benefits</a>
<a class="link" href="common/pricing.html">Pricing</a>
<a class="link" href="common/aboutus.html">About Us</a>
<a class="link demo" href="common/demo.html">Demo</a>
</div>
</div>
<div class="content">
<h1 class="title">TO-DO APP</h1>
<p class="subtitle">TO THE EXTREME</p>
<a class="button" href="common/learnmore.html">learn more</a>
</div>
<img class="bgimage" src="./images/wave.svg">
</body>
</html>