-
Notifications
You must be signed in to change notification settings - Fork 1
/
welcome.html
83 lines (79 loc) · 3.69 KB
/
welcome.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sand Castle | VR</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link href="https://fonts.googleapis.com/css2?family=Pangolin&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<center><h1>Sand Castle | VR</h1><br>
<p>Welcome to our Virtual Reality</p></center>
</nav>
<div class="container">
<div class="card" data-aos="fade-right">
<div class="imgBx">
<img src="tenerife.jpg" alt="">
</div>
<div class="content">
<h2>Tenerife Beach</h2>
<p>Tenerife is the largest of Spain’s Canary Islands, off West Africa. It's dominated by Mt. Teide, a dormant volcano that is Spain's tallest peak. Tenerife may be best known for its Carnaval de Santa Cruz, a huge pre-Lent festival with parades, music, dancing and colorful costumes. </p>
<a href="tenerife- spain/beach2.html" class="btn">Xplore</a>
</div>
</div>
<div class="card" data-aos="fade-up">
<div class="imgBx">
<img src="labadi.jpg" alt="">
</div>
<div class="content">
<h2>Labadi Beach</h2>
<p>Labadi Beach or more properly known as La Pleasure Beach is the busiest beach on Ghana's coast. It is one of Accra's beaches and is maintained by the local hotels. </p>
<a href="labadi- ghana/beach1.html" class="btn">Xplore</a>
</div>
</div>
<div class="card" data-aos="fade-left">
<div class="imgBx">
<img src="sheerness.jpg" alt="">
</div>
<div class="content">
<h2>Sheerness Beach</h2>
<p>Sheerness Beach is a shingle beach, bordered by a wide expanse of green open space which leads to the promonade - making it an ideal spot for a picnic. Popular amongst families, it offers plenty of attractions for a great day out with the children. </p>
<a href="Sheerness-kent/beach5.html" class="btn">Xplore</a>
</div>
</div>
<div class="card" data-aos="fade-right">
<div class="imgBx">
<img src="larnaca.jpg" alt="">
</div>
<div class="content">
<h2>Larnaca Beach</h2>
<p>Larnaca (Larnarka) is a port city on the south coast of Cyprus. It's known for Finikoudes Beach, a sandy strip in the city center backed by a palm-lined seaside promenade. Buzzing bars line the waterfront at Mackenzie Beach.</p>
<a href="larnaca- cyprus/beach3.html" class="btn">Xplore</a>
</div>
</div>
<div class="card" data-aos="fade-left">
<div class="imgBx">
<img src="marina.jpg" alt="">
</div>
<div class="content">
<h2>Marina Beach</h2>
<p>Marina Beach sees thousands of tourists and travellers every year due to its picturesque landscape and scintillating sceneries. Visit the beach and indulge in relaxation and calmness in a totally different way.</p>
<a href="marina- dxb/beach1.html" class="btn">Xplore</a>
</div>
</div>
</div>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init(
// {offset: 350,
// duration: 800
// }
);
</script>
</body>
</html>