-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilmer.html
63 lines (55 loc) · 2.13 KB
/
filmer.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Filmer page</title>
<link rel="stylesheet" type="text/css" href="filmer.css">
</head>
<body>
<script>
function redirectToPage(pageUrl) {
window.location.href = pageUrl;
}
</script>
<div class="logo-container">
<a href="index.html">
<img src="logo/SquareEyes_Logo.png" width="65" height="65" alt="logo for website">
</a>
</div>
<div class="header">
<h1>Et steg unna...</h1>
</div>
<div class="text-container">
<div class="text3">
<h4>Action</h4>
<img src="images/Square_Eyes_Cover1.jpeg" alt="images" onclick="redirectToPage('fast.html')" width="140"
height="230">
<img src="images/Square_Eyes_Cover3.jpeg" alt="images" onclick="redirectToPage('hollywood.html')" width="140"
height="230">
</div>
<div class="text3">
<h4>Barn</h4>
<img src="images/Square_Eyes_Cover6.jpeg" alt="images" onclick="redirectToPage('addams.html')" width="140"
height="230">
<img src="images/Square_Eyes_Cover8.jpeg" alt="images" onclick="redirectToPage('toystory.html')" width="140"
height="230">
</div>
</div>
<div class="text-container">
<div class="text3">
<h4>Skrekk</h4>
<img src="images/Square_Eyes_Cover2.jpeg" alt="images" onclick="redirectToPage('godzilla.html')" width="140"
height="230">
<img src="images/Square_Eyes_Cover4.jpeg" alt="images" onclick="redirectToPage('scream.html')" width="140"
height="230">
</div>
<div class="text3">
<h4>Drama</h4>
<img src="images/Square_Eyes_Cover5.jpeg" alt="images" onclick="redirectToPage('sweetheart.html')" width="140"
height="230">
</div>
</div>
</body>
</html>