-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (41 loc) · 2.11 KB
/
index.html
File metadata and controls
49 lines (41 loc) · 2.11 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
39
40
41
42
43
44
45
46
47
48
49
<!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">
<title>Frontend Mentor | Advice generator app</title>
<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&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
</head>
<body>
<main class="bg-darkBlue w-screen h-screen grid place-items-center">
<div class="flex flex-col justify-center items-center w-[calc(100%_-_2rem)] bg-darkGrayishBlue mx-auto rounded-xl desktop:w-[580px]">
<div class="text-neonGreen font-manrope mt-8 desktop:my-4">
<p> ADVICE # <span id="advice-number">117</span></p>
</div>
<div class="text-lightCyan font-manrope font-bold text-quote text-center my-4 mx-2 desktop:mx-8">
<q id="advice">It is easy to sit up and take notice, what's diificult is getting up and taking action.</q>
</div>
<div class="text-lightCyan mb-8 desktop:my-8">
<img src="./images/pattern-divider-mobile.svg" alt="pattern-divider-mobile" class="desktop:hidden">
<img src="./images/pattern-divider-desktop.svg" alt="pattern-divider-desktop" class="hidden desktop:block">
</div>
<button id="btn" class="bg-neonGreen w-[50px] h-[50px] rounded-full flex justify-center items-center relative -mb-[25px]">
<img src="./images/icon-dice.svg" class="absolute " alt="icon-dice">
</button>
</div>
</main>
<script type="module" src="./main.js"></script>
</body>
</html>
<!-- Advice #Advice ID goes here -->
<!-- "Advice text goes here" -->
<!-- <div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Your Name Here</a>.
</div> -->