-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (104 loc) · 3.39 KB
/
index.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic,300,300italic,600,600italic,800,800italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.min.css">
<link rel="stylesheet" href="css/styles.css">
<title>Portland Historical Tours</title>
</head>
<body>
<div class="background-image">
</div>
<div class="wrapper">
<header>
<a href="index.html"><img class="logo" src="site-assets/Logo.png" alt="Logo_Image" /></a>
<a href="index.html"><h1 class="title-header"><span class="bold">Portland</span></a> Historical Tours</h1>
</header>
<nav>
<ul>
<li><a href="index.html" class="active">Portland Tours</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="register.html">Register</a></li>
</ul>
</nav>
<main class="columns">
<a href="downtown.html">
<div class="col col-1">
<h2 class="sub-header">Downtown Tour</h2>
<img class="small-tour-image" src="site-assets/Downtown_Tour_Small.png" alt="" />
<p>
Duration: 2 Hours
</p>
<p>
Transportation: Walking
</p>
<p>
Food: None
</p>
<p>
Price: $50
</p>
<blockquote>
"It was amazing to walk around downtown Portland comparing the images in the booklet to the current building or in some cases disappearance of a building." - Emily
</blockquote>
</a>
</div>
<a href="growth.html">
<div class="col col-2">
<h2 class="sub-header">Growth Tour</h2>
<img class="small-tour-image" src="site-assets/Growth_Tour_Small.png" alt="" />
<p>
Duration: 3 Hours
</p>
<p>
Transportation: Walking/Driving
</p>
<p>
Food: Included
</p>
<p>
Price: $80
</p>
<blockquote>
"I moved to Portland a few years ago and learned so much from our funny and informative tour guide on the evolution of Portland as I know it today." - Alex
</blockquote>
</a>
</div>
<a href="landmarks.html">
<div class="col col-3">
<h2 class="sub-header">Landmarks Tour</h2>
<img class="small-tour-image" src="site-assets/Landmarks_Tour_Small.png" alt="" />
<p>
Duration: 4 Hours
</p>
<p>
Transportation: Walking/Driving
</p>
<p>
Food: Included
</p>
<p>
Price: $110
</p>
<blockquote>
"We were only in town for a day and decided to make the most of it with a tour. We covered almost the entire city. I couldn't have done that alone and our tour guide was so fun!" - Beatrix
</blockquote>
</a>
</div>
</main>
</div>
<footer>
<p class="copy">
Portland Historical Tours © 2016
</p>
<div class="address">
<p>Portland Historical Tours</p>
<p>123 Main St</p>
<p>Portland, OR 97212</p>
</div>
</footer>
</body>
</html>