-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschedule.html
76 lines (67 loc) · 2.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Schedule</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- defined as div not header since it is different from other header in another pages -->
<div class="header-schedule">
<h1>My Schedule</h1>
<p>Below you can find the daily schedule of Mohamad Al Ayoubi.</p>
</div>
<main>
<table class="schedule-table">
<thead>
<th>Time</th>
<th>Activity</th>
</thead>
<tbody>
<tr>
<td>9:00 AM</td>
<td><a href="./breakfast.html">Breakfast</a></td>
</tr>
<tr>
<td>10:00 AM</td>
<td><a href="./university.html">University Sessions</a></td>
</tr>
<tr>
<td>2:00 PM</td>
<td><a href="./lunch.html">lunch</a></td>
</tr>
<tr>
<td>2:30 ~ 4:00 PM</td>
<td><a href="./Internship.html">Internship Tasks</a></td>
</tr>
<tr>
<td>4:00 ~ 9:00 PM</td>
<td><a href="./nightWork.html">Night Work</a></td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2">Sleep and have a good night!</td>
</tr>
</tfoot>
</table>
</main>
<footer class="footer">
<p>Created by Mohamad Al Ayoubi</p>
<p>For more information, contact us via:</p>
<ul style="list-style-type: none; padding: 0;">
<li>
Phone: <a href="tel:+96170893180" target="_blank">+961 (70) 893 180</a>
</li>
<li>
Email: <a href="mailto:[email protected]" target="_blank">[email protected]</a>
</li>
<li>
Visit my <a href="https://www.linkedin.com/in/mohamad-al-ayoubi-87271224b/"
target="_blank">LinkedIn</a> page.
</li>
</ul>
</footer>
</body>
</html>