-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (46 loc) · 2.05 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
<!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>TV Series</title>
<link rel="icon" type="image/x-icon" href="https://img.icons8.com/external-icongeek26-linear-colour-icongeek26/50/000000/external-tv-monitor-devices-icongeek26-linear-colour-icongeek26.png">
<meta name="title" content="tv series">
<meta name="description" content="Just a little web app that shows the most popular TV series of the week extracted from the MovieDB API. For true fans of TV series!">
<meta name="keywords" content="tv series, best tv series, netflix, amazon prime, disney+">
<meta name="author" content="Francesca Belfiore">
<meta name="copyright" content="2021">
<meta name="robots" content="INDEX,FOLLOW">
<meta name="creation_Date" content="12/02/2021">
<meta name="revisit-after" content="7 days">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/index.js" type="module"></script>
</head>
<body>
<div class="hero">
<header>
<a href="index.html" id="back"><img id="logo" src="https://fontmeme.com/permalink/211201/523366db6f339a7e579ec30cff9de11f.png" alt="tv-series logo"></a>
<div class="changeLanguage">
<select name="language" id="language">
<option value="" selected disabled hidden>Ita/Eng</option>
<option value="it">Italiano</option>
<option value="en">English</option>
</select>
</div>
</header>
</div>
<main>
<button id="slideBack" class="arrows">‹</button>
<div id="container"></div>
<button id="slide" class="arrows">›</button>
</main>
<footer>
</footer>
<div class="modal">
<p class="modalMessage"></p>
<button class="modalBtn">okay</button>
</div>
</body>
</html>