-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (58 loc) · 2.1 KB
/
Copy pathindex.html
File metadata and controls
58 lines (58 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>isDone | Plan Your Life</title>
<!-- Css Main File -->
<link rel="stylesheet" type="text/css" href="css/stylesheet.css">
<!-- Normalize Css File -->
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<!-- Uploading The Main Font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Hammersmith+One&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/43b978cfd6.js" crossorigin="anonymous"></script>
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<!-- Start The Header -->
<header>
<div class="container flex items-center justify-between">
<img src="images/logo.webp" alt="Logo Image" width="120px" height="auto">
<nav>
<i class="fa-solid fa-bars hidden" id="menu-icon"></i>
<ul class="links flex gap-10">
<li><a href="about-us.html">Home</a></li>
<li><a href="developed-by.html">Developed By</a></li>
<li><a href="why-us.html">Why Us ?</a></li>
</ul>
<i class="fa-solid fa-xmark hidden" id="close-menu-icon"></i>
</nav>
</div>
</header>
<!-- End The Header -->
<!-- Start The Landing -->
<section class="landing flex items-stretch">
<div class="container flex items-center justify-between gap-7">
<div class="text">
<h1 class="text-4xl lg:text-5xl mb-3">
<span>isDone</span> Where Your Life <span>is</span> Well Planned.
</h1>
<p class="text-lg mb-3">
in this website we offer you the ability to manage your daily tasks easily and with no taxes !
</p>
<a href="tasks.html" class="text-lg pb-2">
Start Now
<i class="fa-solid fa-circle-play ml-1"></i>
</a>
</div>
<img src="images/landing-illustration.webp" alt="Landing Image">
</div>
</section>
<!-- End The Landing -->
<script type="text/javascript" src="script.js"></script>
</body>
</html>