-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (51 loc) · 1.41 KB
/
index.html
File metadata and controls
60 lines (51 loc) · 1.41 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
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css?family=Outfit" rel="stylesheet" type="text/css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body {
font-family: 'Outfit';
text-align: center;
background-color: hsl(212, 45%, 89%);
}
img {
width: 100%;
height: 90%;
border-radius: 10px;
}
.writeup {
font-size: 25px;
color: hsl(218, 44%, 22%);
font-weight: 700;
}
.scan {
font-size: 17px;
font-weight: 400;
color:hsl(220, 15%, 55%);
}
.container {
background-color: hsl(0, 0%, 100%);
width: 300px;
height: 300px;
padding: 20px 20px 180px 20px;
position: relative;
top: 50px;
left: 37%;
border-radius: 20px;
}
</style>
</head>
<body>
<div class="container">
<img src="image-qr-code.png" alt="qrimage">
<p class="writeup">
Improve your front-end skills by building projects
</p>
<p class="scan">Scan the QR code to visit Frontend Mentor and take your coding skills to the next level
</p>
</div>
</body>
</html>