-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (75 loc) · 1.93 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
79
80
<html lang="en">
<head>
<!-- <title>Redirecting to https://github.com/von-amari/CourseTracker</title>
<meta http-equiv="refresh" content="0; URL=https://github.com/von-amari/CourseTracker">
<link rel="canonical" href="https://github.com/von-amari/CourseTracker"> -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta
property="og:title"
content="Java Mobile Course Tracker App"
/>
<meta
name="image"
property="og:image"
content="%PUBLIC_URL%/screen.jpg"
/>
<meta
name="author"
content="Yvonne King"
/>
<meta
property="og:description"
content="WGU Mobile app development course"
/>
<meta
property="og:url"
content="https://github.com/von-amari/CourseTracker"
/>
<title>Java Mobile Course Tracker App</title>
<style>
img{
display: block;
text-align: center;
margin: 0 auto;
}
a {
text-decoration: none;
}
a:visited{
color: #002F51;
}
body {
text-align: center;
color: #002F51;
margin: 0 auto;
}
div {
width: 400px;
margin: 0 auto;
text-align: left;
}
p {
color:#82BCD4;
}
</style>
</head>
<body>
<a href="https://github.com/von-amari/CourseTracker"> <h1>CourseTracker</h1>
<hr>
<h3>Course Tracker created for WGU's Mobile App Development course.</h3>
<p>Click anywhere to see Course Tracker repo on GitHub</p>
<img src="screen.jpg" width="600" height="400">
<h2>Features</h2>
<hr>
<div><ul>
<li>Add, edit, and delete terms</li>
<li>Add associated courses to each term</li>
<li>Add associated assessments to each course</li>
<li>Course notes for each course, and email notes</li>
<li>Reminders for upcoming courses and assessments</li>
</ul></div>
</a>
</body>
</html>