-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (96 loc) · 3.57 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
<!doctype html>
<html lang="en">
<head>
<!-- default character set -->
<meta charset="utf-8">
<!-- page title -->
<title>VR Park</title>
<!-- tags for search engines -->
<meta name="description" content="virtual reality, theme park, shooter, escape room, haunted house, FPS, VR">
<!-- default viewpoft and zoom level -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- site wide style sheet -->
<link rel="stylesheet" href="css/main.css">
<!-- page specific style sheet -->
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<header>
<nav>
<!-- Logo -->
<div class="logo">
<img src="images/logo-v5.png" alt="VR Park Logo">
</div>
<!-- main navigation -->
<ul class="navList">
<li><a href="index.html">Home</a></li>
<li><a href="activities.html">Activities</a></li>
<li><a href="packages.html">Packages</a></li>
</ul>
<!-- Basket Button -->
<div class="basketButton">
<img src="images/bag-fff.svg" class="basketImg" alt="Shopping Basket">
</div>
</nav>
</header>
<main>
<!-- main content -->
<section class="pageContainer">
<div class="textBox">
<div class="base">
<!-- text box caption -->
<div class="block blockhead">
<h1><span class="ULred">Red pill</span> or <span class="ULblue">blue pill</span>?</h1>
<div class="pillImg">
<a href="activities.html">
<img src="images/pill.svg" class="pill" alt="Red and Blue Pill">
</a>
</div>
</div>
<!-- quoted text -->
<div class="quote">
<p class="quoteText"><i>"Unfortunately, no one can be told what the Matrix is. You have to see it for yourself." - Lucky Palmer</i></p>
</div>
<!-- some more text -->
<p class="bodyText">Step into the rabbit hole. Experience an alternate universe. Question what is real at <b>VR Park.</b></p>
<!-- bullet points with icons -->
<div class="block">
<div class="icon">
<img src="images/env.svg" class="symbol" alt="Envelope Icon">
</div>
<a href="activities.html#WORLDS" class="featureText">Explore our out-of-this-world environments.</a>
</div>
<div class="block">
<div class="icon">
<img src="images/360.svg" class="symbol" alt="360 degree Icon">
</div>
<a href="activities.html#WARZONE" class="featureText">Get the full immersive 360° experience.</a>
</div>
<div class="block">
<div class="icon">
<img src="images/interact.svg" class="symbol" alt="Interaction Icon">
</div>
<a href="activities.html#INTERACT" class="featureText">Interact and become a part of the story.</a>
</div>
<div class="block">
<div class="icon">
<img src="images/pvp.svg" class="symbol" alt="PvP Icon">
</div>
<a href="activities.html#VERSUS" class="featureText">Play with or against other players.</a>
</div>
<div class="block">
<div class="icon">
<img src="images/medal.svg" class="symbol" alt="Medal Icon">
</div>
<a href="activities.html#TOURNAMENT" class="featureText">Compete in our weekly tournaments.</a>
</div>
</div>
</div>
</section>
</main>
<footer>
<!-- contact and imprint -->
© Giant Bags of mostly Water
</footer>
</body>
</html>