-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackages.html
96 lines (94 loc) · 3.22 KB
/
packages.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
<!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/packages.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="packageContainer">
<!-- red pill package -->
<div class="textBox">
<div class="base">
<div class="block blockhead">
<h1 class="ULred">Red pill</h1>
<div class="pillImg">
<a>
<img src="images/red-pill.svg" class="pill" alt="Red Pill">
</a>
</div>
</div>
<p class="bodyText">Take the <span class="redish"><b>RED</b></span> pill for a weekend pass to all the team and PvP activities</p>
<p class="priceText"><b>£49 incl. VAT</b></p>
<button class="buyButton"><b>BUY</b></button>
</div>
</div>
<!-- red and blue pill package -->
<div class="textBox">
<div class="base">
<div class="block blockhead">
<h1 class="ULblue">Both?</h1>
<div class="pillImg">
<a>
<img src="images/pill.svg" class="pill" alt="Red and Blue Pill">
</a>
</div>
</div>
<p class="bodyText">Get the <span class="greenish"><b>PREMIUM</b></span> package for a full weekend pass to all the activities <b>VR PARK</b> has to offer</p>
<p class="priceText"><b>£89 incl. VAT</b></p>
<button class="buyButton"><b>BUY</b></button>
</div>
</div>
<!-- blue pill package -->
<div class="textBox">
<div class="base">
<div class="block blockhead">
<h1 class="ULblue">Blue pill</h1>
<div class="pillImg">
<a>
<img src="images/blue-pill.svg" class="pill" alt="Blue Pill">
</a>
</div>
</div>
<p class="bodyText">Take the <span class="blueish"><b>BLUE</b></span> pill for a weekend to get the "out-of-this-world" experience</p>
<p class="priceText"><b>£49 incl. VAT</b></p>
<button class="buyButton"><b>BUY</b></button>
</div>
</div>
</section>
</main>
<footer>
<!-- contact and imprint -->
© Giant Bags of mostly Water
</footer>
</body>
</html>