-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 loc) · 1.16 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
<!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">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css">
<title>Sinister Signs</title>
<link rel="stylesheet" href="./CSS/style.css">
</head>
<body>
<nav class="container-fluid">
<ul>
<li><strong>Alex's Horoscope Generator</strong></li>
</ul>
</nav>
<main class="container">
<div class="grid">
<section>
<hgroup>
<h1>Sinister Signs</h1>
<h4>Delve into the Darkest Horoscopes</h4>
</hgroup>
<figure>
<img src="./LX76_WHITE_FLYING_ELECTRIC_guitar__and_a_glass_of_whisky_on_the_60e93834-80c7-4e4b-849a-e45183a9755c.png"
alt="Mysterious image" />
</figure>
<h4>Unearth the Secrets of the Stars</h4>
<div class="background-div">
<button id="wisdomButton">Click to Unveil the Shadows</button>
</div>
<p id="wisdom"></p>
</section>
</div>
</main>
<footer class="container">
<small>© 2024 Alexandre Machado</small>
</footer>
<script src="./script.js"></script>
</body>
</html>