-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (83 loc) · 3.28 KB
/
index.html
File metadata and controls
94 lines (83 loc) · 3.28 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="custom.css">
</head>
<body>
<div class="header">
<h1>TRAVELL AND TOURISM</h1>
</div>
<section class="hero_image">
<div class="nav">
<ul>
<li><a href="#home">Home</a></li>
<li> <a href="#search">Search</a></li>
<li> <a href="#contact">Contact</a>
</li>
<li><a href="login.html">Login</a></li>
</ul>
</div>
<ul id="myMenu">
<li><a href="#">Your_Place</a></li>
<li><a href="#">Visited</a></li>
<li><a href="#">Planing</a></li>
<li><a href="#">MyAccount</a></li>
<li><a href="#">Hill_Station</a></li>
<li><a href="#">Plains</a></li>
<li><a href="#">Island</a></li>
<li><a href="#">Offer</a></li>
<li><a href="#">Country</a></li>
</ul>
<div class="hero_wrapper">
<h1>THE PLACE YOU LOVE</h1>
<p>Name some place you want to visit and love to visit </p>
<form>
<button type="submit">Find Place</button>
<select id="country" name="country">
<option value="au">Australia</option>
<option value="ca">Canada</option>
<option value="usa">USA</option>
</select>
</form>
</div>
</section>
<section class="product">
<div class="product__list__item">
<img class="img-responsive" src="1a.jpg" alt="">
<h2 class="product_heading">
AUSTRALIA
</h2>
<p>
National parks are located on the Atlantic, Pacific and Arctic coasts, across the interior mountains and plains and Great Lakes,
reaching as far north and south as Canada goes. They range in size from 14 km2 (Georgian Bay Islands National Park of Canada) to
st 45,000 km2 (Wood Buffalo National Park of Canada). And they include world-renowned names such as Banff and Jasper, as well as more
recently established Ivvavik and Vuntut.
</p>
</div>
<div class="product__list__item">
<img class="img-responsive" src="2b.jpg" alt="">
<h2 class="product_heading">
AMERICA
</h2>
<p> National parks are among Canada's - and the world's - natural jewels. They represent the power of Canada's natural environment — a compelling force — which has shaped not only the geography of this country, but also the course of its history and the experiences of the people who live and travel here.
National parks are established to protect and present outstanding representative examples of natural landscapes and natural
phenomena that occur in Canada's 39 natural regions, as identified in the National Parks System Plan.
</p>
</div>
<div class="product__list__item">
<img class="img-responsive" src="3c.jpg" alt="">
<h2 class="product_heading">
CANADA
</h2>
<p>National parks are located on the Atlantic, Pacific and Arctic coasts, across the interior mountains and plains and Great Lakes,
reaching as far north and south as Canada goes. They range in size from 14 km2 (Georgian Bay Islands National Park of Canada) to
st 45,000 km2 (Wood Buffalo National Park of Canada). And they include world-renowned names such as Banff and Jasper, as well as more
recently established Ivvavik and Vuntut..</p>
</div>
</section>
</body>
</html>