forked from AyatsujiTsukasa/Ant-Planner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (57 loc) · 3 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
<!DOCTYPE html>
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Ant Planner</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/css/bootstrap.min.css" integrity="sha384-y3tfxAZXuh4HwSYylfB+J125MxIs6mR5FOHamPBG064zB+AFeWH94NdvaCBm8qnd" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://use.edgefonts.net/source-sans-pro.js"></script>
<link rel="stylesheet" type="text/css" href="public.css">
<link rel="stylesheet" type="text/css" href="home.css">
<link rel="icon" href="Images/AntPlannerIcon.png">
</head>
<body>
<!-- Navigation bar -->
<nav class="navbar navbar-light navbar-static-top">
<a href="index.html">
<img class="logo" src="Images/AntPlannerLogo.png" alt="Ant Planner logo">
</a>
<ul class="nav navbar-nav pull-xs-right">
<li class="nav-item"><a class="nav-link" href="login.html">Log in</a></li>
<li class="nav-item"><a class="nav-link" href="register.html">Sign up</a></li>
</ul>
</nav>
<div class="container-fluid bg-1">
<img class="logo-2" src="Images/AntPlannerIcon.png" alt="Ant Planner Logo"><br/><br/>
<h1>Plan your time and get things done <br/>with Ant Planner.</h1><br/>
<a href="register.html" class="btn btn-secondary btn-lg">GET STARTED</a>
</div>
<div class="container marketing">
<!-- Three columns of text -->
<div class="row">
<div class="col-lg-4">
<span class="todo"></span>
<h2>To-do List</h2>
<p>Add one-time and repeating plans, set due dates, set reminders (push notifications and alarms), and add tags (importance, location, URL, and custom).</p>
</div><!-- /.col-lg-4 -->
<div class="col-lg-4">
<span class="alarm"></span>
<h2>Alarm</h2>
<p>Set your daily plans to be the content of your alarm. Will you press the snooze button if your alarm is telling you that “Your plans for today: 10am Quiz; 2pm Presentation; 11.59pm Assignment Due”?</p>
</div><!-- /.col-lg-4 -->
<div class="col-lg-4">
<span class="timer"></span>
<h2>Pomodoro Timer</h2>
<p>The Pomodoro Technique is a time management method which uses a timer to break down work into intervals, 25 minutes in length, separated by short breaks.</p>
</div><!-- /.col-lg-4 -->
</div><!-- /.row -->
</div>
<script src="https://www.atlasestateagents.co.uk/javascript/tether.min.js"></script><!-- Tether for Bootstrap -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/js/bootstrap.min.js" integrity="sha384-vZ2WRJMwsjRMW/8U7i6PWi6AlO1L79snBrmgiDpgIWJ82z8eA5lenwvxbMV1PAh7" crossorigin="anonymous"></script>
<script type="text/javascript" src="redirect.js"></script>
</body>
</html>