-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
218 lines (146 loc) · 5.08 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<!-----------------
Main Profile Page
------------------>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>GoTravel</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel = "stylesheet" href = "css/normalize.css">
<link href="https://fonts.googleapis.com/css?family=Cormorant+Garamond" rel="stylesheet">
<link rel = "stylesheet" href = "js/animsition/animsition.min.css">
<link rel = "stylesheet" href = "css/styles.css">
</head>
<body>
<header class = "main-header">
<div id = "main-header">
<h3 class = "name"><a href = "#portfolio">GoTravel</a></h3>
</div>
<nav>
<ul class = "main-nav">
<li><a href = "#main-header"> Home</a></li>
<li><a href = "TravelArrangements.html">Travel Arrangements</a></li>
<li><a href = "hotel.html">Hotel</a></li>
<li><a href = "CarRental.html">Car Rentals</a></li>
</ul>
</nav>
</header>
<!--Added clearfix -->
<div class = "clearfix">
<div id = "portfolio">
<div class = 'portfolio'>
<h3 class = "portfolio-title"><a>DESTINATION<a></h3>
<ul class = "projects">
<li>
<a href = "NewYork.html">
<img src = "images/New YorkUS.jpg" alt = "Portfolio">
</a>
<h2>United States</h2>
<p>
The United States of America is home to 50 states,
ranging from blistering cold to scorching heat,
with many stretches of desert and mountainous areas.
The US is bordered north by Canada and south by Mexico.
Current population of the US is 325.7 million.
</p>
</li>
<li>
<a href = "Japan.html">
<img src = "images/TokyoJAPAN.jpg" alt = "Marketing Page" >
</a>
<h2>Japan</h2>
<p>
The composition of Japan is a large network of a multitude of
islands, the four biggest being: Shikoku, Kyushu, Hokkaido, and
Honshu. At least half of japan is composed of forests and mountainous
regions and its political structure is divided into 47 prefectures
and 8 regions. Japan experiences varied climate changes during the
seasons and possesses a population of 126.8 million.
</p>
</li>
<li>
<a href = "Canada.html">
<img src = "images/RoyalFamilyCANADA.jpg" alt = "Search Page" >
</a>
<h2>Canada</h2>
<p>
Canada lies between the North Pacific Ocean and the North Atlantic
Ocean, and is the second largest country globally. Canada is north
of the US and possesses varied climates, from temperate (west coast)
to subarctic (north). Northern Canada can collect snowfall for the
majority of the year and is divided into 8 primary regions. The
population is currently 36.71 million.
</p>
</li>
<li>
<a href = "Europe.html">
<img src = "images/ItalyEUROPE.jpg" alt = "Travel App" >
</a>
<h2>Europe</h2>
<p>
Europe faces Russia to the north east and Asia to the south east.
A network of local islands and peninsulas determine the overall
shape of Europe. The east is filled with hilly uplands and northern
plains, while mountainous regions populate the sourthern regions.
Europe has a population of 741.4 million.
</p>
</li>
<li>
<a href = "SOUTHAMERICA.html">
<img src = "images/RainforestSOUTHAMERICA.jpg" alt = "Photo Gallery" >
</a>
<h2>South America</h2>
<p>
South America borders North America from the south and has many
regions with varying climates and flourishes with all sorts of
wildlife. Within South America are huge spans of rain forests,
dry and arid deserts, and the Amazon River basin that runs for
miles. There are also highlands and high mountains in various
regions. Population for South America is 422.5 million.
</p>
</li>
<li>
<a href = "India.html">
<img src = "images/NorthernINDIA.jpg" alt = "Calculator" >
</a>
<h2>India</h2>
<p>
India's geography is a mixture of deserts, hills, plateaus, and
snow-capped mountains. The peninsula that India is on stretches
into the Indian Ocean. India shares borders with China, Nepal,
Pakistan, and several other nations. India has a whopping Population
of 1.339 billion!
</p>
</li>
</ul>
</div>
</div>
</div>
</body>
<footer id = "footer">
<div class = "border-line">
</div>
<!-- <h3 class="studentname-footer"><a>Student Name</a>
</h3> -->
<ul>
<li class="back-to-top">
<a href="#main-header" title="back-to-top">BACK TO TOP</a>
</li>
<li id = "foot-li">
<ul class="footer-nav">
<li>
<a href="about.html">ABOUT GoTravel</a>
</li>
<li>
<a href="reward.html">MY REWARDS</a>
</li>
<li>
<a href="contact.html">CONTACT</a>
</li>
</ul>
</li>
</ul>
<p id = "copyrights" >© 2018 GoTravel, LLC, All rights reserved.</p>
</footer>
</html>