-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (36 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Advice generator.dev</title>
</head>
<body>
<main>
<section class="hero">
<div class="advice-number">ADVICE
<p class="number"></p>
</div>
<div class="advice-area">
<h4 class="advice"></h4>
</div>
<div class="dice-icon" id="setAdvice">
<i class="fa-solid fa-dice"></i>
</div>
</section>
</main>
<footer>
<div class="credits">
<span>Made by João Gabriel Póvoa</span>
</div>
<div class="socials">
<a href="https://github.com/Oleg-martsenie"><i class="fa-brands fa-github"></i></a>
<a href="https://www.linkedin.com/in/povoajoao-l/"><i class="fa-brands fa-linkedin"></i></a>
</div>
</footer>
<script src="app.js"></script>
</body>
</html>