-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (47 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="myWatchList" />
<meta property="og:description" content="A web application designed for anime enthusiasts to explore the latest top 25 anime shows." />
<meta property="og:url" content="https://sarah-you.github.io/myWatchList" />
<meta property="og:image" content="https://sarah-you.github.io/myWatchList/images/meta-myWatchList.webp" />
<title>myWatchList</title>
<link rel="icon" href="images/apple-touch-icon.png">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/layout.css">
<link rel="stylesheet" href="css/styles.css">
<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@400;600&family=Righteous&display=swap"
rel="stylesheet">
</head>
<body>
<header>
<div class="header">
<h1 class="logo">
MyWatchList
</h1>
<h2 id="my-list-head">
🗂️ myList
</h2>
</div>
</header>
<main>
<div class="main-container">
<h3 class="heading display">Top 25 Anime List 2023</h3>
<h3 class="subheading hidden"> My List</h3>
<div data-view="main-page-list" id="main-page-list">
<div class="main-page">
<ol id="anime-list"></ol>
</div>
</div>
<div data-view="my-list" id="my-list" class="hidden">
<ol id="my-saved-list"></ol>
</div>
</main>
<script src="js/data.js"></script>
<script src="js/main.js"></script>
</body>
</html>