-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (48 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frontend frontendmentor</title>
<link rel="stylesheet" href="./styles/style.css" />
<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:[email protected]&display=swap" rel="stylesheet">
</head>
<body>
<div class="challenges">
<a href="./challenges/qr-code/index.html">
<div class="challenge__card">
<h2 class="challenge__heading">QR code component</h2>
<p class="challenge__description">
A perfect first challenge if you're new to HTML and CSS. The card layout doesn't shift, so it's
ideal if you haven't learned about building responsive layouts yet.
</p>
<img class="challenge__image" src="./challenges/qr-code/design/desktop-preview.jpg" alt="qr code" />
</div>
</a>
<a href="./challenges/blog-preview-card/index.html">
<div class="challenge__card">
<h2 class="challenge__heading">Blog preview card</h2>
<p class="challenge__description">
This HTML & CSS-only challenge is a perfect project for beginners getting up to speed with HTML and
CSS fundamentals, like HTML structure and the box model.
</p>
<img class="challenge__image" src="./challenges/blog-preview-card/design/desktop-preview.jpg"
alt="blog preview card" />
</div>
</a>
<a href="./challenges/social-links-profile-main/index.html">
<div class="challenge__card">
<h2 class="challenge__heading">Social links profile</h2>
<p class="challenge__description">
In this small project, you'll build out your social link-sharing profile. You can even personalize
it and use it to share all your social profiles!
</p>
<img class="challenge__image" src="./challenges/social-links-profile-main/design/desktop-preview.jpg"
alt="blog preview card" />
</div>
</a>
</div>
</body>
</html>