-
Notifications
You must be signed in to change notification settings - Fork 0
/
landing.html
72 lines (65 loc) · 2.97 KB
/
landing.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
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Habit Tracker App</title>
</head>
<body id="landing-page">
<header>
<h1 class="logo">Habit Tracker</h1>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Features</a></li>
<li><a href="#">Testimonials</a></li>
<li><a href="#">Contact</a></li>
</ul>
</header>
<section class="hero">
<h1>Track Your Habits</h1>
<p>Master your days, own your habits! Unleash the power of progress with our Habit Harmony app!</p>
<a href="#" class="cta">Get Started</a>
</section>
<section class="features">
<h2>Why Habit Tracker</h2>
<!-- Feature list items can be added here -->
<p>
Unleash your full potential with our Habit Tracker app! Elevate accountability, visualize progress, and conquer goals
effortlessly. Transform routines into powerful habits, boost self-awareness, and celebrate victories – big or small.
With friendly reminders, supportive communities, and stress-free planning, our app is your key to a happier, healthier,
and more successful you. Dive into a world of positive change today!
</p>
</section>
<section class="testimonials">
<h2>What Our Users Say</h2>
<!-- Testimonial list items can be added here -->
<p>
I absolutely love this habit tracker app! It's been a game-changer for my productivity.
The motivational features keep me on track, and the user-friendly interface makes it a breeze to navigate.
I appreciate the customization options, allowing me to tailor the app to my personal goals and habits.
The insights and analytics provide valuable data for self-improvement, and being part of the community adds a supportive
touch to my journey. The reminders are spot-on, syncing across my devices seamlessly. Kudos to the developers for creating
such an effective and user-friendly tool—it's truly made a positive impact on my daily life!
</p>
</section>
<section class="contact">
<h2>Contact Us</h2>
<p>Unlock Success with Every Keystroke! Contact us now for a personalized journey – just drop your name,
email, and your message below. Let's turn your dreams into reality!</p>
<form>
<input type="text" placeholder="Name">
<input type="email" placeholder="Email">
<textarea placeholder="Message"></textarea>
<input type="submit" value="Submit">
</form>
</section>
<footer>
<ul>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms of Service</a></li>
<li><a href="#">Support</a></li>
</ul>
</footer>
</body>
</html>