-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (30 loc) · 1.22 KB
/
index.html
File metadata and controls
35 lines (30 loc) · 1.22 KB
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
<!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="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@500;800&display=swap" rel="stylesheet">
<title>Frontend Mentor | Advice generator app</title>
<link rel="stylesheet" href="style.css">
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
</head>
<body>
<div class="advice-container">
<div class="card-container">
<p>Advice #<span id="advice-id"></span></p>
<h2>"<span id="advice-text"></span>"</h2>
<picture>
<source media="(max-width:500px) " srcset="./images/pattern-divider-mobile.svg">
<img src="./images/pattern-divider-desktop.svg" alt="">
</picture>
<button id="generate-btn">
<img src="./images/icon-dice.svg" alt="">
</button>
</div>
</div>
<script defer src="script.js"></script>
</body>
</html>