-
Notifications
You must be signed in to change notification settings - Fork 0
/
hotel.html
106 lines (100 loc) · 4.63 KB
/
hotel.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>The Hotel Grand Budapest</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<link href="styles.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+SC&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
</head>
<body style="background : #e5a9b5" class="hotel">
<button class="btn btn-sec" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasWithBothOptions"
aria-controls="offcanvasWithBothOptions"><span class="material-symbols-outlined">
menu
</span></button>
<div class="offcanvas offcanvas-start" data-bs-scroll="true" tabindex="-1" id="offcanvasWithBothOptions"
aria-labelledby="offcanvasWithBothOptionsLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="offcanvasLabel"><b>Where do you want to go?</b></h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body" style="background-color:#e5a9b5">
<div>
<ul id="list">
<li><a href="index.html">Home</a></li>
<hr>
<li><a href="french.html">"The French Dispatch"</a></li>
<hr>
<li><a href="quiz.html">Who are you in that story?</a></li>
<hr>
</ul>
</div>
<div class="dropdown mt-3">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButton"
data-bs-toggle="dropdown">
Contacts
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<li class="dropdown-item">Discord - #0999</li>
<li class="dropdown-item">Instagram - @asyabaginskaya</a></li>
</ul>
</div>
</div>
</div>
<img src="img/title.jpg" alt="title" style="float:right">
<h1><b>THE HOTEL GRAND BUDAPEST</b></h1>
</div>
<div class="main_page container">
<h2><u>Storyline</u></h2>
<p>This movie recounts the adventures of M. Gustave (Ralph Fiennes), a legendary concierge at a famous European
hotel between the wars,
and Zero Moustafa (Tony Revolori), the lobby boy who becomes his most trusted friend.
The story involves the theft and recovery of a priceless Renaissance painting and the battle for an enormous
family fortune -
all against the backdrop of a suddenly and dramatically changing continent.</p>
</div>
<div id="carousel" class="carousel slide carousel-fade container" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="img/love_birds.jpeg" class="d-block w-50 mx-auto" alt="love_birds">
</div>
<div class="carousel-item">
<img src="img/hotel.jpg" class="d-block w-50 mx-auto" alt="hotel">
</div>
<div class="carousel-item">
<img src="img/smth.jpg" class="d-block w-50 mx-auto" alt="hall">
</div>
<div class="carousel-item">
<img src="img/bakery.jpg" class="d-block w-50 mx-auto" alt="bakery">
</div>
</div>
<button class="carousel-control-prev btn-space" type="button" data-bs-target="#carousel" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next btn-space" type="button" data-bs-target="#carousel" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<div>
<video autoplay muted>
<source src="img/GBS.mp4" type="video/mp4">
</video>
<ul class="genres"><u>Genres</u>
<li>Adventure</li>
<li>Comedy</li>
<li>Crime</li>
</ul>
</div>
<div id="last"><img src="img/the-grand-budapest-hotel.jpg" style='height: 100%; width: 100%; object-fit: cover' />
</div>
</body>
</html>