-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (28 loc) · 1.22 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="./reset.css">
<link rel="stylesheet" href="./style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;700;800&display=swap" rel="stylesheet">
<title>Frontend Mentor | Gerador de conselhos app</title>
</head>
<body>
<main class="card">
<h2 class="advice-id">CONSELHO #117</h2>
<p class="advice-description">"É fácil sentar e prestar atenção, o difícil é levantar e agir."</p>
<picture>
<source srcset="./images/pattern-divider-mobile.svg" media="(max-width: 768px)">
<img src="./images/pattern-divider-desktop.svg" alt="Pattern divider">
</picture>
<button class="advice-update">
<img src="./images/icon-dice.svg" alt="Dice icon">
</button>
</main>
<script src="index.js"></script>
</body>
</html>