-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (84 loc) · 3.29 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
<!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>Anime app</title>
<!-- font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
<!-- css -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="reset.css">
</head>
<body>
<!-- NAV -->
<nav id="top-nav">
<ul class="ul-nav-top buttonsShow">
<li class="logo">
<a href="index.html">
<img class="img-logo" src="./logo/logo.png" alt="logo site">
</a>
</li>
<li><a class="rose-btn randomPageBtn link-nav" href="#">random anime</a></li>
<li><a href="#" class="rose-btn popularBtn link-nav"> popular anime</a></li>
<li><a class="watchlist link-nav" href="mylist.html">watchlist</a></li>
</ul>
</nav>
<div class="container-wrapper">
<span id="error"></span>
<div class="search-div">
<div class="form__group">
<form method="get">
<label for="anime" class="form__label">Search anime by title:</label>
<input type="text" class="form__field w-100 search" placeholder="Assassination Classroom">
</form>
</div>
</div>
<div class="windowResult">
<div id="list"></div>
</div>
<h1 class="title">Most popular anime</h1>
<hr>
<div class="showFilms">
<div class="loader">Loading...</div>
</div>
<!-- <div class="flex buttonsShow">
<div class="rndContainer">
<button class="rose-btn randomPageBtn">show random anime</button>
</div>
<div class="rndContainer">
<button class="rose-btn popularBtn ">show popular anime</button>
</div>
</div>
<div class="rndContainer">
<button class="rose-btn myListBtn" onclick="location.href='mylist.html'">watchlist</button>
</div> -->
</div>
<dialog id="modal">
<div class="container-modal">
<img src="" class="img-modal" alt="">
<h2 class="title-modal">Title</h2>
<h3 class="genres-modal">genres</h3>
<h4 class="status-modal">Status</h4>
<p class="description-modal"></p>
<button class="close rose-btn">Close</button>
</div>
</dialog>
<footer class="end">
<div class="footer-content">
<div>
<p>Developed with <span id="heart">♥</span> by <a href="#">Carolina Tronci</a></p>
</div>
</div>
</footer>
<script>
</script>
<script type="module" src="script/api_js.js"></script>
<script type="module" src="script/script.js"></script>
<script type="module" src="script/search.js"></script>
<script type="module" src="script/towatch.js"></script>
</body>
</html>