-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (25 loc) · 977 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="./assets/img/favicon.ico.png">
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="./css/favorites.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/sweetalert2@10">
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<script src="https://kit.fontawesome.com/b8b63585f2.js" crossorigin="anonymous"></script>
<title>Curious Facts website</title>
</head>
<body>
<div class="container">
<h1 class="title" >CURIOUS FACTS</h1>
</div>
<main id="content">
<section id="favorites-section"></section>
<div id="favorites-container"></div>
</main>
<!-- <button class="favorites-button">FAVORITES</button> -->
<script src="./js/home.js" type="module"></script>
</body>
</html>