-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (26 loc) · 1.2 KB
/
index.html
File metadata and controls
31 lines (26 loc) · 1.2 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
<!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="stylesheet" href="./css/style.css">
<title>Curious Facts</title>
</head>
<body>
<section class="home-page">
<nav id="nav"><img class="navImg" src="./assets/star.svg" alt="start to save favorites facts"></nav>
<h1 id="title">Curious Facts</h1>
<main id="facts">Would you like to know useless and interesting facts that are not going to help you in life? <br><span>click the button below</span></main>
<button id="fav-stroke"><img src="./assets/star-stroke.svg" alt="start to save favorites facts"></button>
<button id="fav-fill"><img src="./assets/star-fill.svg" alt="start to save favorites facts"></button>
<button id="button">Get Fact</button>
</section>
<section class="favorites-page">
<nav id="return"><img class="navImg" src="./assets/return.svg" alt="return to facts"></nav>
<h2>Favorites</h2>
<div id="fav-facts"></div>
</section>
<script src="./src/events.js" type="module"></script>
</body>
</html>