-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (29 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Generate - mostly completely useless - advice with a simple button click.">
<!-- 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.css">
<title>Frontend Mentor | Advice generator app</title>
</head>
<body>
<main>
<article class="advice-card">
<h1 class="advice-id" id="advice-id"></h1>
<p class="advice-body" id="advice-body">"Some hopefully pretty lengthy placeholder for future advice. Pls work,
please lol"</p>
<picture class="divider" aria-hidden="true">
<source srcset="images/pattern-divider-desktop.svg" media="(min-width: 800px)">
<img src="images/pattern-divider-mobile.svg" alt="" />
</picture>
<button class="advice-btn" id="advice-btn" aria-label="Generate a random advice.">
<img src="images/icon-dice.svg" alt="" aria-hidden="true">
</button>
</article>
</main>
<script src="index.js"></script>
</body>
</html>