-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
49 lines (46 loc) · 1.84 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
<!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>Habit Tracker</title>
<link rel="stylesheet" href="css/style_index.css">
</head>
<body>
<header>
<div class="navbar">
<div class="logo"><a href="#">Habit Tracker</a></div>
<ul class="links">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="habit.html">Habit</a></li>
<li><a href="tracker.html">Perfomance</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
<a href="team.html" class="action-btn">Our Team</a>
</div>
</header>
<section id="hero">
<div class="grid-container">
<div class="greetings">
<h1 id="greeting-time">Hello</h1>
<script src="js/greetings.js"></script>
<h1 class="track">Track your daily habit</h1>
<p>Habit tracker will help you to be better, healthier, and productive person. <br><br>
Habit tracker are pretty easy to use, you just have to input <br> your activity, time, and how long you've been doing the activity. <br>
You can also add some icon and change the color the way you want.
</p>
<div class="custom-btn">
<a href="habit.html">
<button>Get Started</button>
</a>
</div>
</div>
<div class="bg-img">
<img src="assets/img/index.png" alt="">
</div>
</div>
</section>
<script src="js/script_home.js"></script>
</body>
</html>