-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (87 loc) · 2.01 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
81
82
83
84
85
86
87
88
89
90
91
92
<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 Appointment Scheduler"
/>
<meta
name="image"
property="og:image"
content="%PUBLIC_URL%/appt1.png"
/>
<meta
name="author"
content="Yvonne King"
/>
<meta
property="og:description"
content="WGU Software II course"
/>
<meta
property="og:url"
content="https://github.com/von-amari/JavaAppointmentScheduler"
/>
<title>Java Appointment Scheduler</title>
<style>
img{
display: block;
text-align: center;
margin: 0 auto;
width: 800px;
height: 400px;
}
a {
text-decoration: none;
}
a:visited{
color: #748386;
}
body {
text-align: center;
color: #748386;
margin: 0 auto;
}
div {
width: 400px;
margin: 0 auto;
text-align: left;
}
div.one{
width: 100px;
}
p {
color:#82BCD4;
}
</style>
</head>
<body>
<a href="https://github.com/von-amari/JavaAppointmentScheduler"> <h1>CourseTracker</h1>
<hr>
<h3>Appointment Scheduler created for WGU's Software II course.</h3>
<p>Click anywhere to see the Appointment Scheduler repo on GitHub</p>
<img src="appt1.png">
<h2>Features</h2>
<hr>
<div><ul>
<li>Add, edit, and delete appointments and customers</li>
<li>Reminders for upcoming appointments</li>
</ul>
</div>
<h2>Technologies</h2>
<hr>
<div class="one"><ul>
<li>Java</li>
<li>JavaFX</li>
<li>MySQL</li>
<li>IntelliJ IDE</li>
</ul>
</div>
</a>
</body>
</html>