-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.html
More file actions
191 lines (191 loc) · 7.11 KB
/
events.html
File metadata and controls
191 lines (191 loc) · 7.11 KB
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./assets/css/style.css">
<title>Brasov City</title>
</head>
<body class="body-events">
<nav class="navbar">
<span class="navbar-toggle" id="js-navbar-toggle">
<i class="fas fa fa-bars"></i>
</span>
<a href="#" class="logo grow">BRASOV CITY</a>
<ul class="main-nav" id="js-menu">
<li>
<a href="index.html" class="nav-links"><i class="fa fa-fw fa-lg fa-home" style='margin-right:5px'></i>HOME</a>
</li>
<li>
<a href="history.html" class="nav-links"><i class='fas fa-archway' style='margin-right:5px'></i>HISTORY</a>
</li>
<li>
<a href="attractions.html" class="nav-links"><i class="fas fa-map-marked" style='margin-right:5px'></i>ATTRACTIONS</a>
</li>
<li>
<a href="events.html" class="nav-links"><i class="fas fa-music" style='margin-right:5px'></i>EVENTS</a>
</li>
<li>
<a href="contact.html" class="nav-links"><i class="fa fa-fw fa-envelope" style='margin-right:5px'></i>CONTACT</a>
</li>
</ul>
</nav>
<!--End Navbar-->
<main>
<!-- Helpful code for the tables found here: https://www.youtube.com/watch?v=mqLI2oN6rXQ -->
<h2 class="events-header">OUR BUS TOURS</h2>
<div class="myEvents">
<table class="eventsDaily">
<thead>
<tr>
<td colspan="7">BUS TOURS SCHEDULE</td>
</tr>
</thead>
<tbody>
<tr>
<th scope="col">BUS TOURS</th>
<th scope="col">DEPARTURE</th>
<th scope="col">RETURN</th>
<th scope="col">SEATS</th>
<th scope="col">FROM</th>
<th scope="col">PRICE/PERSON</th>
<th scope="col">BOOK</th>
</tr>
<tr>
<th scope="row">DRACULA CASTLE</th>
<td>07:30</td>
<td>16:00</td>
<td>18</td>
<td>BUS STATION 3</td>
<td>€40</td>
<td class="myButton">BOOK</td>
</tr>
<tr>
<th scope="row">POIANA BRASOV</th>
<td>09:30</td>
<td>15:30</td>
<td>20</td>
<td>BUS STATION 3</td>
<td>€30</td>
<td class="myButton">BOOK</td>
</tr>
<tr>
<th scope="row">PELES CASTLE</th>
<td>09:00</td>
<td>16:30</td>
<td>18</td>
<td>MAIN RAILSTATION</td>
<td>€25</td>
<td class="myButton">BOOK</td>
</tr>
<tr>
<th scope="row">TAMPA HILL</th>
<td>08:00</td>
<td>15:00</td>
<td>18</td>
<td>CENTRAL SQUARE</td>
<td>€27</td>
<td class="myButton">BOOK</td>
</tr>
<tr>
<th scope="row">SAXON CITADELS</th>
<td>08:00</td>
<td>16:00</td>
<td>18</td>
<td>BUS STATION 3</td>
<td>€40</td>
<td class="myButton">BOOK</td>
</tr>
<tr>
<th scope="row">RUPEA FORTRESS</th>
<td>09:00</td>
<td>16:30</td>
<td>16</td>
<td>MAIN SQUARE</td>
<td>€35</td>
<td class="myButton">BOOK</td>
</tr>
<tr>
<th scope="row">PELES CASTLE</th>
<td>09:00</td>
<td>16:30</td>
<td>20</td>
<td>MAIN RAILSTATION</td>
<td>€25</td>
<td class="myButton">BOOK</td>
</tr>
</tbody>
</table>
</div>
<br>
<br>
<h2 class="events-header">WEEKLY EVENTS IN BRASOV</h2>
<div class="myEvents">
<table class="eventsDaily">
<thead>
<tr>
<td colspan="4" class="">FREE EVENTS IN BRASOV</td>
</tr>
</thead>
<tbody>
<tr>
<th scope="col">WEEKLY EVENTS</th>
<th scope="col">WHEN</th>
<th scope="col">WHERE</th>
<th scope="col">TIME</th>
</tr>
<tr>
<th scope="row">COMEDY NIGHT</th>
<td>25.08.2020</td>
<td>COMEDY CLUB</td>
<td>18:00</td>
</tr>
<tr>
<th scope="row">JAZZ NIGHT</th>
<td>26.08.2020</td>
<td>LIQUER LOUNGE</td>
<td>19:30</td>
</tr>
<tr>
<th scope="row">KIDS PLAY</th>
<td>27.08.2020</td>
<td>CENTRAL PARK</td>
<td>12:00</td>
</tr>
<tr>
<th scope="row">TRADITIONAL MUSIC</th>
<td>28.08.2020</td>
<td>MY SCENE</td>
<td>19:00</td>
</tr>
<tr>
<th scope="row">MUSEUM TOUR</th>
<td>29.08.2020</td>
<td>NATIONAL GALLERY</td>
<td>13:30</td>
</tr>
<tr>
<th scope="row">ART EXHIBITION</th>
<td>30.08.2020</td>
<td>MY ART</td>
<td>15:00</td>
</tr>
<tr>
<th scope="row">WINE TASTING</th>
<td>31.08.2020</td>
<td>MY WINERY</td>
<td>19:00</td>
</tr>
</tbody>
</table>
</div>
</main>
<div class="footer">
<canvas id="myCanvas2" width="500" height="50"></canvas>
</div>
</body>
<script src='https://kit.fontawesome.com/a076d05399.js'></script>
<script src="./assets/js/app.js"></script>
</html>