-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschedule.html
129 lines (119 loc) · 4.93 KB
/
schedule.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/CSS/style.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Lato:100,300,400">
<title>schedule</title>
</head>
<body>
<header class="primary-header container group">
<nav class="nav primary-nav">
<ul>
<li><a href="index.html">Home</a></li>
<!--
-->
<li><a href="speakers.html">Speakers</a></li>
<!--
-->
<li><a href="venue.html">Venue</a></li>
<!--
-->
<li><a class="active" href="schedule.html">Schedule</a></li>
<!--
-->
<li><a href="register.html">Register</a></li>
</ul>
</nav>
</header>
<section class="row">
<div class="container">
<h1> SCHEDULE </h1>
<p> Below are outlined the days, times and speakers scheduled for the conference.
</p>
<div class="table-intro">
<h2>Workshops</2>
<p>24th -26th October 2020</p>
</div>
<table>
<thead>
<tr>
<th class="first" scope="row"><u> Eveyday</u>/Time</th>
<td class="schedule-offset" colspan="2">Activity/Speaker</td>
</tr>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"><time datetime="08:30:00"> 08:30 AM </time></th>
<td class="schedule-offset" colspan="2">Registration</td>
</tr>
<tr>
<th scope="row"><time datetime="10:00:00">10:00 AM</time></th>
<td>
<a href="speakers.html#faith">
<h4>Faith Nchifor</h4>Lorem ipsum, dolor sit amet consectetur adipisicing elit. At, rerum!
</a>
</td>
<td>
<a href="speakers.html#estelle">
<h4>Estelle Yomba</h4>Lorem ipsum dolor, sit amet consectetur adipisicing elit.
</a>
</td>
</tr>
<!--------row 2---->
<tr>
<th scope="row"><time datetime="12:30:00"> 12:30 PM </time></th>
<td class="schedule-offset" colspan="2">Lunch</td>
</tr>
<tr>
<th scope="row"><time datetime="14:00:00">02:00 PM</time></th>
<td>
<a href="speakers.html#noella">
<h4>Noella Mborgella</h4>Lorem ipsum, dolor sit amet consectetur adipisicing elit. At, rerum!
</a>
</td>
<td>
<a href="speakers.html#faith">
<h4>Faith Nchifor</h4>Lorem ipsum dolor, sit amet consectetur adipisicing elit.
</a>
</td>
</tr>
<!--------row 2---->
<tr>
<th scope="row"><time datetime="17:30:00"> 05:30 PM </time></th>
<td class="schedule-offset" colspan="2">Dinner</td>
</tr>
<tr>
<th scope="row"><time datetime="18:30:00">06:30 PM</time></th>
<td>
<a href="speakers.html#estelle">
<h4>Estelle Yomba</h4>Lorem ipsum dolor, sit amet consectetur adipisicing elit.
</a>
</td>
<td>
<a href="speakers.html#noella">
<h4>Noella Mborgella</h4>Lorem ipsum, dolor sit amet consectetur adipisicing elit. At, rerum!
</a>
</td>
</tr>
</tbody>
</table>
</div>
</section>
<footer class="primary-footer container group">
<nav class="nav primary-nav">
<ul>
<ul>
<li><a href="index.html">Home</a></li><!--
--><li><a href="speakers.html">Speakers</a></li><!--
--><li><a href="venue.html">Venue</a></li><!--
--><li><a href="schedule.html">Schedule</a></li><!--
--><li><a href="register.html">Register</a></li>
</ul>
</nav>
<small>© Styles Conference</small>
</footer>
</body>
</html>