-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (112 loc) · 4.47 KB
/
index.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
<!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/[email protected]/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">
<!-- JAVASCRIPT-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/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 active" href="index.html">Home
<span class="visually-hidden">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About Us</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>FILM K</h1>
<p>The new go to website for film.</p>
</div>
<!--------------COLUMNS------------------->
<div class="container mt-5">
<div class="row">
<div class="col-sm-6">
<div class="d-grid gap-2">
<button onclick="window.location.href = 'fantasy.html';" class="btn btn-lg btn-primary"
type="button">FANTASY</button>
</div>
</div>
<div class="col-sm-6">
<div class="d-grid gap-2">
<button onclick="window.location.href = 'sci-fi.html';" class="btn btn-lg btn-primary"
type="button">SCI-FI</button>
</div>
</div>
</div>
</div>
</div>
<br>
<!-- CAROUSEL WITH PICTURES -->
<div id="demo" class="carousel slide" data-bs-ride="carousel">
<!-- Indicators/dots -->
<div class="carousel-indicators">
<button type="button" data-bs-target="#demo" data-bs-slide-to="0" class="active"></button>
<button type="button" data-bs-target="#demo" data-bs-slide-to="1"></button>
<button type="button" data-bs-target="#demo" data-bs-slide-to="2"></button>
</div>
<br>
<!-- The slideshow/carousel -->
<div class="carousel-inner">
<div class="carousel-item active">
<div class="d-flex justify-content-center">
<img src="landscape2.jpg" alt="Picture movie 2" class="d-block w-50">
</div>
</div>
<div class="carousel-item">
<div class="d-flex justify-content-center">
<img src="landscape1.jpg" alt="Picture movie 1" class="d-block w-50">
</div>
</div>
<div class="carousel-item">
<div class="d-flex justify-content-center">
<img src="landscape3.jpg" alt="Picture movie 3" class="d-block w-50">
</div>
</div>
</div>
<!-- Left and right controls/icons -->
<button class="carousel-control-prev" type="button" data-bs-target="#demo" data-bs-slide="prev">
<span class="carousel-control-prev-icon"></span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#demo" data-bs-slide="next">
<span class="carousel-control-next-icon"></span>
</button>
</div>
<br>
<br>
<!-- FOOTER-->
<footer class="bg-primary">
<p> © All rights reserved!</p>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</footer>
</div>
</body>
</html>