-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (34 loc) · 1.3 KB
/
index.html
File metadata and controls
38 lines (34 loc) · 1.3 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
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
<link rel="stylesheet" href="./assets/css/style.css">
<script defer src="./assets/js/script.js"></script>
<title>Advice generator app</title>
<link href="https://fonts.googleapis.com/css2?family=Manrope&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="wrapper">
<div class="advice-number">
ADVICE #100
</div>
<div class="advice-qoute">
Big things have small beginnings.
</div>
<div class="divider">
<picture class="advice-generator__divider">
<source media="(max-width: 767px)" srcset="./assets/images/pattern-divider-mobile.svg">
<img src="./assets/images/pattern-divider-desktop.svg" alt="divider">
</picture>
</div>
</div>
<button class="advice-btn">
<img src="./assets/images/icon-dice.svg" class="dice-img" alt="dice">
</button>
</div>
</body>
</html>