-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfavourites.html
More file actions
38 lines (35 loc) · 1.34 KB
/
favourites.html
File metadata and controls
38 lines (35 loc) · 1.34 KB
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
<!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">
<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=Rubik+80s+Fade&display=swap" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Rubik+80s+Fade&display=swap');
</style>
<link rel="shortcut icon" href="./assests/images/M-favicon.png" type="image/x-icon">
<link rel="stylesheet" href="./assests/css/favourites.css">
<title>Marvel | Fav</title>
</head>
<body>
<!-- Heading containing the page info and Home navigation icon -->
<div id="top_container">
<span class="head_fav"> FAVOURITE </span>
<div id="logo_container">
<a href="./index.html">
<img src="./assests/images/Marvel_Logo.svg.png" id="logo" alt="logo" srcset="">
</a>
</div>
<span class="head_fav"> HEROS </span>
</div>
<div class="major_container">
<!-- Render the local data -->
<div id="listHolder">
</div>
</div>
<script src="./assests/scripts/favourites.js"></script>
</body>
</html>