forked from Montana-Code-School/Simple-HTML-Site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKomodoMedia.html
More file actions
43 lines (36 loc) · 1.13 KB
/
KomodoMedia.html
File metadata and controls
43 lines (36 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>MyFirstWebPage</title>
<link href='https://fonts.googleapis.com/css?family=Playfair+Display:900|Raleway:300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="CSS/Komodo.css">
</head>
<body>
<h1>Komodo Island</h1>
<div class="dropdown">
<button class="dropbtn">MENU</button>
<div class="dropdown-content">
<a href="Komodo.html">Home</a>
<a href="KomodoAbout.html">About</a>
<a href="KomodoGetThere.html">Getting There</a>
<a href="KomodoMedia.html">Media</a>
</div>
</div>
<p> </p>
<h2>Media</h2>
<p><iframe src="https://www.youtube.com/embed/RaTWq98hzF0?ecver=2" width="640" height="360" frameborder="0" allowfullscreen></iframe></p>
<p> </p>
<div class="img-wrap">
<img src="IMG/Komodo1.jpg">
<img src="IMG/Komodo2b.jpg">
<img src="IMG/Komodo3.jpg">
<img src="IMG/Komodo4.jpg">
<img src="IMG/Komodo5.jpg">
<img src="IMG/Komodo6.jpg">
<img src="IMG/Komodo7.jpg">
<p> </p>
</div>
<script src="JS/Komodo.js"></script>
</body>
</html>