-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
76 lines (70 loc) · 3.72 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
<!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>Goal-Getter</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Custom CSS -->
<link rel="stylesheet" href="style.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Navigation bar -->
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#">Goal Getter</a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#goalsList">Goals</a></li>
</ul>
</div>
</nav>
<div class="hero-section">
<h1 class="text-center" style="font-family: 'Open Sans', sans-serif;">Welcome to Goal-Getter</h1>
<p class="text-center" style="font-family: 'Open Sans', sans-serif;">The easiest way to achieve your goals and track your progress. Set your goals, stay on track and achieve success with Goal-Getter.</p>
<a href="#container" class="btn btn-primary btn-lg" style="font-family: 'Open Sans', sans-serif;">Get Started</a>
</div>
<!-- main section -->
<div class="container" id="container">
<div class="row" id="lists">
<div class="col-md-8 offset-md-2">
<div class="list-items " >
<h1 class="text-center" style="font-family: 'Open Sans', sans-serif;">Achieve Your Dreams with Goal-Getter</h1>
<!-- to-do list form -->
<form>
<div class="form-group">
<label for="goalName" style="font-family: 'Open Sans', sans-serif;">Goal Name</label>
<input type="text" class="form-control" id="goalName" placeholder="Enter goal name">
</div>
<div class="form-group">
<label for="description" style="font-family: 'Open Sans', sans-serif;">Description</label>
<textarea class="form-control" id="description" rows="3"></textarea>
</div>
<div class="form-group">
<label for="deadline" style="font-family: 'Open Sans', sans-serif;">Deadline</label>
<input type="date" class="form-control" id="deadline">
</div>
<button type="submit" class="btn btn-primary" style="font-family: 'Open Sans', sans-serif;">Add Goal</button>
</form>
<div class="row" id="myList">
<div class="col-md-12">
<h1 style="font-family: 'Open Sans', sans-serif;" class="title">My Goals</h1>
<ul id="goalsList" class="goals-list"></ul>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- custom JS -->
<script src="/script.js"></script>
</body>
</html>