-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (57 loc) · 2.05 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>
<head>
<title>UChicago Taekwondo Club | Home</title>
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<nav>
<div id="nav-background">
<header>
<h1>The University of Chicago</h1>
<h2>Taekwondo Club</h2>
</header>
<ul id="menu">
<li><a href="http://taekwondo.uchicago.edu/">Home</a></li>
<li><a href="http://taekwondo.uchicago.edu/about.html">About</a></li>
<li><a href="http://taekwondo.uchicago.edu/instructors.html">Instructors</a></li>
<li><a href="http://taekwondo.uchicago.edu/testing.html">Testing</a></li>
<li><a href="http://taekwondo.uchicago.edu/etiquette.html">Etiquette</a></li>
<li><a href="http://taekwondo.uchicago.edu/faq.html">FAQ</a></li>
<li><a href="mailto:[email protected]">Contact Us</a></li>
</ul>
</div>
</nav>
<div id="main">
<h3>Fall 2014 Schedule</h3>
<table id="schedule">
<tr>
<th>Days</th>
<th>Time</th>
<th>Location</th>
</tr>
<tr>
<td>Tuesday</td>
<td>7:30pm-9pm</td>
<td>RAC 206<br>(Ratner Dance Studio)</td>
</tr>
<tr>
<td>Thursday</td>
<td>7:30pm-9pm</td>
<td>RAC 206<br>(Ratner Dance Studio)</td>
</tr>
<td>Saturday</td>
<td>10:00am-12pm</td>
<td>RAC 206<br>(Ratner Dance Studio)</td>
</tr>
</table>
<div id="welcome">
<h4>Welcome to the Taekwondo Club at the University of Chicago!</h4>
<p>We welcome students of all skill levels and types of martial arts experience. Join our <a href="https://lists.uchicago.edu/web/info/taekwondo">listhost</a> for club announcements. You can also find us on <a href="https://www.facebook.com/groups/2200011310/"><img id="fb" src="images/facebook.png"></a>.
</div>
</div>
</div>
</body>
</html>