-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
131 lines (120 loc) · 5.32 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
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cinimania</title>
<link href="css/main.css" rel="stylesheet"/>
</head>
<body>
<nav>
<img class="logo" src="https://th.bing.com/th/id/OIP.26ooQZpVjbtyxpu9ClrgMgHaE8?rs=1&pid=ImgDetMain" alt="Company logo" />
<header class="welcome">
<h1>Välkommen till Cinimania!</h1>
<p>För dig som vill ha mer än bara film!</p>
</header>
<div class="menu">
<button>Sparade filmer</button>
<button>Senaste nytt</button>
<button>Toppfilmerna</button>
<button>Mitt konto</button>
</div>
</nav>
<main>
<section>
<header>
<h3>FILTRERING, SORTERING & SÖKNING</h3>
</header>
<div class="find">
<div>
<h3>Filtrering</h3>
</div>
<div>
<h3>Sortering</h3>
</div>
<div>
<h3>Sökning</h3>
<input type="search" placeholder="Sök på sidan">
</div>
</div>
</section>
<section>
<header>
<h3>FILMER</h3>
</header>
<div class="movies">
<div>
<h3>IMITATION GAME</h3>
<img src="https://wp.testbytes.net/wp-content/uploads/2024/03/The-Imitation-Game-Quad-poster-Benedict-Cumberbatch11-768x441.webp" alt="IMITATION GAME" width="250" height="150" />
<button>Se filmen</button>
</div>
<div>
<h3>THE SOCIAL NETWORK</h3>
<img src="https://wp.testbytes.net/wp-content/uploads/2024/03/THe-social-network-movie-poster-768x432.jpg" alt="THE SOCIAL NETWORK" width="250" height="150" />
<button>Se filmen</button>
</div>
<div>
<h3>THE CIRCLE</h3>
<img src="https://wp.testbytes.net/wp-content/uploads/2024/03/cirlce-poster-768x432.jpeg" alt="THE CIRCLE" width="250" height="150" />
<button>Se filmen</button>
</div>
<div>
<h3>MR. ROBOT</h3>
<img src="https://wp.testbytes.net/wp-content/uploads/2024/03/HD-wallpaper-mr-robot-tv-show-2-mr-robot-tv-shows-artist-768x336.jpg" alt="MR.ROBOT" width="250" height="150" />
<button>Se filmen</button>
</div>
<div>
<h3>PIRATES OF SILICON VALLEY</h3>
<img src="https://wp.testbytes.net/wp-content/uploads/2024/03/Pirates-of-silicon-valley-poster-768x432.jpg" alt="PIRATES OF SILICON VALLEY" width="250" height="150" />
<button>Se filmen</button>
</div>
<div>
<h3>FIFTH ESTATE</h3>
<img src="https://wp.testbytes.net/wp-content/uploads/2024/03/FifthEstate_840x529_Alt-768x484.jpg" alt="FIFTH ESTATE" width="250" height="150" />
<button>Se filmen</button>
</div>
<div>
<h3>HER</h3>
<img src="https://wp.testbytes.net/wp-content/uploads/2024/03/her-movie-poster-768x511.jpg" alt="HER" width="250" height="150" />
<button>Se filmen</button>
</div>
<div>
<h3>WE ARE LEGION</h3>
<img src="https://wp.testbytes.net/wp-content/uploads/2024/03/6c166f6a0bfbbf18d2376d573ba06bc1-768x434.jpg" alt="WE ARE LEGION" width="250" height="150" />
<button>Se filmen</button>
</div>
<div>
<h3>JOBS</h3>
<img src="https://wp.testbytes.net/wp-content/uploads/2024/03/52149602442d3.jpeg" alt="JOBS" width="250" height="150" />
<button>Se filmen</button>
</div>
<div>
<h3>WAR GAMES</h3>
<img src="https://wp.testbytes.net/wp-content/uploads/2024/03/11484216c1b34ca658e550ac_rw_1200.jpg" alt="WAR GAMES" width="250" height="150" />
<button>Se filmen</button>
</div>
<div>
<h3>HACKERS</h3>
<img src="https://wp.testbytes.net/wp-content/uploads/2024/03/hackers-cinema-quad-movie-poster-3.jpg" alt="HACKERS" width="250" height="150" />
<button>Se filmen</button>
</div>
</div>
</section>
</main>
<footer>
<div>
<article><b>Om oss</b></article>
<article><b>Vanliga frågor</b></article>
<article><b>Kontakta oss</b></article>
</div>
<div>
<article><b>Integritetspolicy</b></article>
<article><b>Om kakor</b></article>
</div>
<div>
<p><em>Copyright © 2024</em></p>
</div>
</footer>
<script src="js/main.js" defer></script>
</body>
</html>