-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (30 loc) · 1.15 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
<!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="shortcut icon" href="./src/images/favicon-32x32.png" type="image/x-icon">
<link rel="stylesheet" href="./src/css/reset.css">
<link rel="stylesheet" href="./src/css/variables.css">
<link rel="stylesheet" href="./src/css/style.css">
<link rel="stylesheet" href="./src/css/responsive.css">
<title>Advice generator app</title>
</head>
<body>
<main class="container">
<div class="card">
<p class="advice-id"></p>
<h1 class="advice-text"></h1>
<picture>
<source srcset="./src/images/pattern-divider-mobile.svg" media="(max-width: 768px)">
<img src="./src/images/pattern-divider-desktop.svg" alt="Pattern divider">
</picture>
<button class="change-advice-btn">
<img src="./src/images/icon-dice.svg" alt="Dice icon">
</button>
</div>
</main>
<script src="./src/js/index.js"></script>
</body>
</html>