-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschedule.html
86 lines (86 loc) · 2.35 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
<!DOCTYPE html>
<html>
<head>
<title>Summer Activities</title>
<link href="css/style.css" type="text/css" rel="stylesheet">
</head>
<body>
<div id="page">
<!-- Navigation bar with links to other pages -->
<div class="menu-holder">
<nav id="header-main-menu">
<ul class="main-menu ">
<li>
<a href="index.html"> Home </a>
</li>
<li>
<a href="schedule.html">Scuba Sites</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
</div>
<br/>
<!-- Table describing different Scuba diving sites and their attributes -->
<h1 class= "center-text"> Exotic Scuba Diving Sites</h1>
<div class = "center-mid-2">
<div class ="center-2">
<h1> Scuba Diving Sites</h1>
<p>Below is a compilation of scuba diving sites I have visited or want to visit.
</p>
<table class ="center-2">
<tr class="head">
<th></th>
<th>Dive Type</th>
<th>Marine Life</th>
<th>Certification Level</th>
</tr>
<tr>
<th>Sipadan,Malaysia</th>
<td>Along the coral reefs of the Sipadan Island</td>
<td>Barracudas, Hammerhead Sharks, Parrot Fish</td>
<td>PADI Open-Water</td>
</tr>
<tr class="even">
<th>Maldives</th>
<td>Coral reefs and deep dives</td>
<td>Manta Rays, Sea Turtles, Varied Sharks</td>
<td>PADI Advanced Open-Water</td>
</tr>
<tr>
<th>Galapagos</th>
<td>Along the islands</td>
<td>Galapagos Turtles, Mako Shark, Dolphins</td>
<td>PADI Master Scuba-Diver</td>
</tr>
<tr class="even">
<th>Red Sea, Egypt</th>
<td>Sandbanks and low-lying waters</td>
<td>White-tip, Hammerhead Sharks, Seahorses</td>
<td>PADI Advanced Open-Water</td>
</tr>
</table>
</div>
</div>
</div>
</body>
<!-- Footer with links to social media -->
<footer class="footer">
<div>
<p> © 2021 </p>
<div class="socialmedia">
<a href="#">
<span class="twitter"> <img class= "smlogo" src="img/f081.png" /></span>
</a>
<a href="#">
<span class="facebook"> <img class= "smlogo" src="img/f082.png"/></span>
</a>
<a href="#">
<span class="fa fa-pinterest-p"> <img class= "smlogo" src="img/f083.png"/> </span>
</a>
</div>
</div>
</footer>
</html>