-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (46 loc) · 1.51 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
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- displays site properly based on user's device -->
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<link rel="stylesheet" href="./styles/main.css" />
<link rel="stylesheet" href="./styles/index.css" />
<title>Frontend Mentor | Advice generator app</title>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
</head>
<body>
<main>
<div class="container">
<div class="advice-container">
<h1 class="advice-title">Advice #<span class="advice-id"></span></h1>
<p class="advice">“<span class="advice-text"></span>”</p>
<div class="divider">
<img src="./images/pattern-divider.svg" alt="Mobile Divider" />
</div>
<div class="dice">
<button class="button" id="dice-button">
<img src="./images/icon-dice.svg" alt="Icon Dice" />
</button>
</div>
</div>
</div>
</main>
<footer>
<div class="attribution">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank"
>Frontend Mentor</a
>. Coded by
<a href="https://www.github.com/matheus-lincon">Matheus Lincon</a>.
</div>
</footer>
<script src="./js/main.js"></script>
</body>
</html>