-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSchedule.html
More file actions
84 lines (82 loc) · 2.42 KB
/
Schedule.html
File metadata and controls
84 lines (82 loc) · 2.42 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Schedule</title>
</head>
<body>
<header>
<section>
<h1>Event Name</h1>
<img src="download.jpeg" alt="Image" width="300" height="200" />
<nav>
<ul>
<li><a href="task.html">Home</a></li>
<li><a href="Schedule.html">Schedule</a></li>
<li><a href="Speakers.html">Speakers</a></li>
<li><a href="Venue.html">Venue</a></li>
<li><a href="Registration.html">Registration</a></li>
<li><a href="FAQ.html">FAQ</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="About.html">About</a></li>
</ul>
</nav>
</section>
</header>
<h2>Event Schedule</h2>
<table>
<thead>
<tr>
<th>Time</th>
<th>Event</th>
<th>Location</th>
</tr>
</thead>
<tbody>
<tr>
<td>9: 00 AM - 10:00 AM</td>
<td>
SpaceX Event
<details>
<summary>Event Description</summary>
<p>
The event will cover a brief description of the history of the
Organization and also about the upcomming mission.
</p>
</details>
</td>
<td>Auditorium</td>
</tr>
<tr>
<td>10:00 AM - 11:00 AM</td>
<td>
NASA Event
<details>
<summary>Event Description</summary>
<p>
The event will cover a brief description of the history of the
Organization and also about the upcomming mission.
</p>
</details>
</td>
<td>Auditorium</td>
</tr>
<tr>
<td>12:00 PM - 1:00 PM</td>
<td>
<h3>Sparco Event</h3>
<details>
<summary>Event Description</summary>
<p>
The event will cover a brief description of the history of the
Organization and also about the upcomming mission.
</p>
</details>
</td>
<td>Auditorium</td>
</tr>
</tbody>
</table>
</body>
</html>