-
Notifications
You must be signed in to change notification settings - Fork 3
/
page1-Cover-y.html
52 lines (39 loc) · 2.11 KB
/
page1-Cover-y.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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Welcome Rocky Mountain</title>
<link rel="stylesheet" href="css/indexStyle.css">
</head>
<body>
<!-- partial:index.partial.html -->
<div class="leftSidebar">
<div class="container">
<h1>Welcome to Rocky Mountain National Park</h1>
<div calss="search">
<!-- <input class = "searchBar" type="text" id="searchin" placeholder="Seacrh..." list="list" /> -->
<button class="button" id="button8">Introduction</button>
<button class="button" id="button9">Plan Your Trip</button>
</div>
</div>
</div>
<h1 class="heading" >“Come, walk with me into the forest's blessed abode,To see the wondrous beauty the Earth has bestowed” </h1>
<div class="rightSidebar">
<span id="intro">
<img src="./img/arrow.png">
<span id= "clickhere">Click the cards!</span>
</span>
<div class="card-container">
<div class="card" style="--image: url('../img/camping-card.jpg'); --angle: -8deg; --x: 30%; --y: 30%; --caption: 'Camping'" onclick="sendVal('camping')"></div>
<div class="card" style="--image: url('../img/hiking.webp'); --angle: 6deg; --x: -6%; --y: 27%; --caption: 'Hiking'" onclick="sendVal('hiking')"></div>
<div class="card" style="--image: url('../img/driving-card.jpg'); --angle: -4deg; --x: -20%; --y: 5%; --caption: 'Self Driving'" onclick="sendVal('driving')"></div>
<div class="card" style="--image: url('../img/picnic-card.jpg'); --angle: -3deg; --x: -6%; --y: -10%; --caption: 'Picnic'" onclick="sendVal('picnic')"></div>
<div class="card" style="--image: url('../img/shuttle-card.jpg'); --angle: 16deg; --x: 20%; --y: -5%; --caption: 'Shuttle'" onclick="sendVal('shuttle')"></div>
<div class="card" style="--image: url('../img/restaurant.jpg'); --angle: 13deg; --x: 40%; --y: 10%; --caption: 'Eating'" onclick="sendVal('eating')"></div>
</div>
</div>
<!-- partial -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha256-4+XzXVhsDmqanXGHaHvgh1gMQKX40OUvDEBTu8JcmNs=" crossorigin="anonymous"></script>
<script src="js/indexScript.js"></script>
</body>
</html>