-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (54 loc) · 2.72 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!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 | QR code component</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="../../bootstrap-5/css/bootstrap.min.css">
<script src="../../bootstrap-5/js/bootstrap.min.js"></script>
<!--LINKS FOR GOOGLE FONT-->
<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=Outfit&display=swap"
rel="stylesheet">
<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=Outfit:wght@700&display=swap"
rel="stylesheet">
<!-- Latest compiled and minified CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Latest compiled JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
</style>
</head>
<body style="background-color: hsl(218, 50%, 91%); text-align: center;">
<div class="card rounded-4 mt-5 px-3 pt-3 pb-4 card-div"
role="contentinfo">
<img class="card-img-top rounded-3" src="images/image-qr-code.png"
alt="QR Code image" style="width:100%">
<div class="card-body">
<h5 class="card-title heading">Improve your front-end skills by building projects
</h5>
<p class="card-text paragraph">Scan the QR code to visit Frontend Mentor and take
your coding skills to the next level</p>
</div>
</div>
<!--
Improve your front-end skills by building projects
Scan the QR code to visit Frontend Mentor and take your coding skills to the next level
-->
<div class="attribution" role="doc-acknowledgments">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://www.linkedin.com/in/ekpe-offiong/?lipi=urn%3Ali%3Apage%3Ad_flagship3_feed%3Bdyc2aWvyREm4YNx5yR83vA%3D%3D"
target="_blank">Ekpe Offiong Jr</a>.
</div>
</body>
</html>