generated from YearUpSpring2024/bootstrap-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dining.html
129 lines (119 loc) · 5.74 KB
/
dining.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!Doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap demo</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- css -->
<link rel="stylesheet" href="./css/site.css">
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container">
<a class="navbar-brand" href="./index.html">Costas D'este Beach Resort and spa</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="./index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./over_night_stay.html">Longterm-Plan</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./activities.html">Activities</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./dining.html">Dinings</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="./offers.html" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Offers
</a>
<ul class="dropdown-menu">
<!-- <li><a class="dropdown-item" href="./events.html">Events</a></li> -->
<li><a class="dropdown-item" href="./rent_a_car.html">Rent a Car</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="./activities.html">Activities</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main>
<div class="container mt-5">
<h1 class="text-center">Dining Options</h1>
<!-- selecting the button -->
<div class="text-center">
<input type="radio" id="payAsyouGo" name="diningOption" checked>
<label for="payAsyouGoOption">Pay as you go</label>
<input type="radio" id="allInclusiveOption" name="diningOption">
</div>
<!-- div for pay-as-you option -->
<div id="payAsYouGoDiv" class="mt-3">
<div class="row">
<div class="col-md-6">
<h2 class="text-center">Chez Le Bebe</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eius sint voluptatem laboriosam
omnis ipsam excepturi, vitae incidunt labore voluptas repudiandae tempore, minima
reprehenderit voluptatum. Aliquid recusandae consequatur ipsum maiores iure.</p>
</div>
<div class="col-md-6">
<h2 class="text-center">Ole Restaurant</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Placeat sit eum nulla beatae odio
libero a tenetur aliquam iusto dolor ipsam magni neque, cum quasi quae culpa. In, iure odit.
</p>
</div>
</div>
</div>
<!-- -->
<div id="allInclusiveDiv" class="mt-3" style="display: none;">
<table class="table">
<thead>
<tr>
<th>Plan</th>
<th>Adult</th>
<th>Basic</th>
<th>Premium (incl drinks)</th>
</tr>
</thead>
<!-- tbody -->
<tbody>
<tr>
<td>Price per day</td>
<td>$62.50</td>
<td>$80.00</td>
<td>$80.00</td>
</tr>
<!-- Their -->
<td>Child</td>
<td>$49.99</td>
<td>$49.99</td>
<td>$49.99</td>
</tbody>
</table>
<p>The All-inclusive can be added to your reservation at check-in</p>
</div>
<!-- message -->
<div class="mt-5 text-center" id="increaseMessage"></div>
</div>
</main>
<footer></footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
<script src="scripts/dining.js"></script>
</body>
</html>