-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfantasy.html
127 lines (115 loc) · 4.94 KB
/
fantasy.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>FILMK REVIEW WEBSITE</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="styling.css">
<!-- JAVASCRIPT-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe"
crossorigin="anonymous"></script>
</head>
<body>
<div class="container-fluid">
<!------------------------------------------------------------------ NAVBAR MENU ------------------------------------------------------------->
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">FILM K</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarColor01"
aria-controls="navbarColor01" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarColor01">
<ul class="navbar-nav me-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home
</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="about.html">About Us
<span class="visually-hidden">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contactus.html">Contact</a>
</li>
</ul>
<img src="logo.png" class="d-flex" width="3%">
</div>
</div>
</nav>
<!--------------INTRO------------------->
<div class="container-fluid p-5 bg-light text-black text-center">
<h1>The Hobbit</h1>
<br>
<p>This novel by J.R.R. Tolkien was adapted into 3 movies, based on the adventures of Bilbo Baggins;
a home loving Hobbit who embarks on a journey</p>
<p> along with a wizard and a band of 13 dwarves to reclain
the dwarves' home and aquire treasure from the infamous dragon Smaug</p>
</div>
<br>
<br>
<br>
<div class="container">
<div class="row">
<div class="col-sm-4">
<img src=hobbit1.webp alt="The Hobbit 1" width="75%">
<br>
<br>
<p>The Hobbit: An unexpected journey</p>
<p>The beginning of Bilbo baggins journey to reclaim the city of Erebor and its riches from the dragon Smaug
</p>
<br>
<a href="https://www.youtube.com/watch?v=G0k3kHtyoqc" target="_blank"><button class="GFG">
Trailer
</button></a>
</div>
<div class="col-sm-4">
<img src=hobbit2.jpg alt="The Hobbbit 2" width="75%">
<br>
<br>
<p>The Hobbit: The Desolation of Smaug</p>
<p>Bilbo and Company finally face the dragon Smaug</p>
<br><br>
<a href="https://www.youtube.com/watch?v=fnaojlfdUbs" target="_blank"><button class="GFG">
Trailer
</button></a>
</div>
<div class="col-sm-4">
<img src=hobbit3.jpg alt="The Hobbit 3" width="75%">
<br>
<br>
<p>The Hobbit: The battle of the five armies</p>
<p>The finale of the epic trilogy which sees bilbo face off against a number of enemies to save his friends
and protect the Lonely Mountain</p>
<a href="https://www.youtube.com/watch?v=iVAgTiBrrDA" target="_blank"><button class="GFG">
Trailer
</button></a>
</div>
</div>
</div>
<a href="https://www.waterstones.com/book/the-hobbit/j-r-r-tolkien/9780008627782" target="_blank"> <button
class="GFG">
Purchace the book here
</button></a>
<p>
<a href="sci-fi.html"> <button class="GFG">Sci-Fi page</button></a>
</p>
<br>
<!--------------------------------------------------------------- FOOTER -------------------------------------------------------->
<footer class="bg-primary">
<p> © All rights reserved!</p>
<p><a href="mailto:groupk@eCFG.com">groupk@eCFG.com</a></p>
</footer>
</div>
<!--------------------------------------------------------------- JAVASCRIPT ----------------------------------------------------->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe"
crossorigin="anonymous"></script>
</body>
</html>