-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (36 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Filmoteka</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="https://kit.fontawesome.com/1a964fb64e.js" crossorigin="anonymous"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="js/index.js" defer></script>
</head>
<body>
<div id="myNav" class="overlay">
<div class="overlay__content">
</div>
</div>
<header class="header">
<h2 class="heading-primary">
FILMOTEKA
</h2>
</header>
<section class="movies-container row">
<ul class="render-movies">
</ul>
</section>
<section class="button-container clear">
<button class="button button__load-more">Učitaj još</button>
<button class="button button__movie-roulette"><i class="fas fa-dice"></i></button>
</section>
<footer class="footer">
<p class="footer__credits">
Napravio: Luka Patrun.
</p>
</footer>
</body>
</html>