-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1.08 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
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FilmCloud</title>
<link rel="stylesheet" href="styles.css">
<!-- Import Google Font Hanalei Fill -->
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Hanalei+Fill&display=swap" rel="stylesheet">
</head>
<body>
<img id="logo" src="images/logo.png" alt="Filmcloud Logo">
<div class="search-box">
<img src="images/icon.png" alt="Search Icon" class="search-icon">
<input type="text" id="searchInput" placeholder="Search">
</div>
<div class="container">
<div class="movieScrollContainer">
<div class="movieWrapper" id="movieContainer">
<!-- Filmy se budou generovat pomocí JavaScriptu -->
</div>
</div>
</div>
<script src="https://unpkg.com/smooth-scrollbar/dist/smooth-scrollbar.js"></script>
<script src="script.js"></script>
</body>
</html>