-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappointments.html
58 lines (50 loc) · 1.59 KB
/
appointments.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
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>Appointments | COVID Care</title>
<meta charset="UTF-8">
<!-- CSS Stylesheet-->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- JavaScript -->
<script src="js/main.js"></script>
<!--font style-->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Source+Serif+Pro:wght@400;700&display=swap" rel="stylesheet">
</head>
<body onload="loadAppointmentListings()">
<!-- TOP ROW -->
<header>
<div id="header-logo">
<a href="index.html">
<img alt="cmu-seal" src="media/cmu-seal.png" style="width:72px;height:72px"/>
<h1>COVID Care</h1>
</a>
</div>
<nav>
<br/>
<a class="button" href="index.html">HOME</a>
<a class="selected button" href="cart.html">APPOINTMENTS</a>
<a class="button" href="404.html">LAB RESULTS</a>
<a class="button" href="404.html">VACCINATIONS</a>
<a class="button" href="404.html">PROFILE</a>
</nav>
</header>
<!-- MAIN BODY -->
<div id="container">
<h1>Select one of the following available times.</h1>
<table id="appointment-listings">
<thead>
<tr>
<th>SUN 2/27</th>
<th>MON 2/28</th>
<th>TUE 3/1</th>
<th>WED 3/2</th>
<th>THU 3/3</th>
<th>FRI 3/4</th>
<th>SAT 3/5</th>
</tr>
</thead>
</table>
<a id="single-button" class="button" href="index.html">BACK</a>
</div>
</body>
</html>