-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
78 lines (72 loc) · 3.09 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!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">
<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=Allison&family=Caveat:wght@500&family=Lato&family=Montserrat:wght@400;600&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./styles/style.css">
<title>PlanIt</title>
<!-- todo: add title and logo -->
</head>
<body>
<header>
<div id="logo">PlanIt</div>
<nav>
<ul>
<li><a href="schedule.html" data-tooltip="Schedule">Schedule</a></li>
<li><a href="planner.html" data-tooltip="Planner">Planner</a></li>
<li><a href="task-manager.html" data-tooltip="Task Manager">Task Manager</a></li>
<li><a href="./chatbot/chatbot_prototype.html" data-tooltip="Help">Help</a></li>
</ul>
</nav>
</header>
<section>
<div id="homepage_landing">
<div id="home_images">
<div class="text">
<h1><span>O</span>rganize your work</h1>
<h1>with <span>PlanIt.</span></h1>
<p>This platform intends to harbour and develop the
importance of time and discipline among the student community.
In the cyber interface , most of our daily
lives get a set back due to improper time management
this website aims at improving and helping the students
at a broad respect.
</p>
<p>
Use this to plan your things, execute them on time and get rewarded for your short-term goals.
Be Consistent! Wish you a Happy Day!
</p>
<!-- <img class="desk" src="./image_assets/desk.jpg" alt=""> -->
</div>
<div>
<img class="planner" src="./image_assets/planner_pink.jpg" alt="">
</div>
<!-- <div class="desk">
<img src="./image_assets/desk.jpg" alt="">
</div> -->
<!-- <div class="planner">
<img src="./image_assets/planner_pink.jpg" alt="">
</div> -->
</div>
</div>
</section>
<section>
<div id="organize">
<a href="schedule.html" class="container">
<img class="routine" src="./image_assets/routine.svg" alt="">
<h2>Schedule</h2>
</a>
<a href="task-manager.html" class="container">
<img class="taskManager" src="./image_assets/todo.svg" alt="">
<h2>Task Manager</h2>
</a>
</div>
</section>
</body>
</html>