-
Notifications
You must be signed in to change notification settings - Fork 1
/
vacation.html
70 lines (59 loc) · 2.16 KB
/
vacation.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Destiny Herring</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="Description" lang="en" content="ADD SITE DESCRIPTION">
<meta name="author" content="ADD AUTHOR INFORMATION">
<meta name="robots" content="index, follow">
<!-- icons -->
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon.png">
<link rel="shortcut icon" href="favicon.ico">
<!-- Override CSS file - add your own CSS rules -->
<link rel="stylesheet" href="examplecss.css">
<link href='http://fonts.googleapis.com/css?family=Lobster|Dancing+Script|Amatic+SC|Pinyon+Script|Rock+Salt|Patrick+Hand|Homemade+Apple|Fredericka+the+Great' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="header">
<div class="container">
<h1 class="header-heading">Destiny Herring</h1>
</div>
</div>
<div class="nav-bar">
<div class="container">
<ul class="nav">
<li><a href="about.html">About</a></li>
<li><a href="photography.html">Photography</a></li>
<li><a href="drawings.html">Drawings</a></li>
<li><a href="vacation.html">Vacations</a></li>
</ul>
</div>
</div>
<div class="content">
<div class="container">
<div class="main">
<!-- Heading levels -->
<h2>My Vacations</h2>
<hr>
<!-- Responsive images -->
<h3>The Royal Carribean Cruise</h3>
<iframe width="560" height="315" src="https://www.youtube.com/embed/ch1QhHZCf9Q" frameborder="0" allowfullscreen></iframe>
<p style="width: 550px;">I went on a cruise on the Royal Carribean Cruise last year with my family. We stayed on for a week, and in that week, I realized I don't like boats very much. As I easily get sea sick. </p>
<div style="text-align: right; position: relative; bottom: 500px">
<h3>Where I would Like to visit: </h3>
<p>The Niagra Falls</p>
<p>Greece</p>
<p>Austrailia</p>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="container">
© Copyright 2015
</div>
</div>
</body>
</html>