-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (36 loc) · 1.28 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
<!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="./Static/images/favicon-32x32.png">
<title>Advice generator app</title>
<link rel="stylesheet" href="./Static/css/style.css">
</head>
<body>
<main>
<div class="ContainerAdvice">
<h2>Advice #<span id="idAdvice"></span></h2>
<p class="Advice">Loading ...</p>
<!-- Imagen responsive -->
<picture>
<source media="(max-width:768px)" srcset="./Static/images/pattern-divider-mobile.svg">
<img class="divider" src="./Static/images/pattern-divider-desktop.svg" alt="divider">
</picture>
<button class="ButtonRefresh roll" type="button">
<img src="./Static/images/icon-dice.svg" alt="">
</button>
</div>
</main>
<footer>
<p>Enero 2023</p>
<p>
Coded by <a href="https://github.com/andres-brinez" target="_blank">Andres Briñez </a>
</p>
<p>
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>
</p>
</footer>
<script type="module" src="./Static/js/main.js"></script>
</body>
</html>