-
Notifications
You must be signed in to change notification settings - Fork 1
/
events.html
63 lines (59 loc) · 1.86 KB
/
events.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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
</style>
<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>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div>
<nav>
<ul>
<li><a href="index.html"><img src="Logo.PNG" alt="Logo"></a></li>
<li class="special-li"><a href="leaflet.html">Navigation</a></li>
<li class="special-li"><a href="#">Events</a></li>
<li class="special-li"><a href="updates.html">Updates</a></li>
<li class="special-li"><a href="sos.html">SOS</a></li>
</ul>
</nav>
</div>
<h1>Women-centric events at UCI</h1>
<div class="events">
<ul>
<table border="1">
<div>
<tr>
<th>Event Title</td>
<th>Date and Time</td>
<th>Location</td>
<th>Description</td>
</tr>
</div>
<tr>
<td>WICS: Super Study Sesh with Hero Cosmetics!</td>
<td>May 22nd @ 2:00-5:00 PM</td>
<td>DBH 4011</td>
<td>Study with friends and enjoy some free skincare goodies from Hero Cosmetics </td>
</tr>
<tr>
<td>SWE: SWE in the Sun</td>
<td>May 28th @ 6:30-7:30 PM</td>
<td>Aldrich Park (In Front of Infinity Fountain)</td>
<td>Take a break from the stress of the end of the quarter and come to GM9 to destress and relax with friends</td>
</tr>
<tr>
<td>Eats everyone's leftovers</td>
<td>Nibbles at food</td>
<td>Hearty eater</td>
<td>Will eat till he explodes</td>
</tr>
</table>
</ul>
</div>
</body>
</html>