-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (44 loc) · 1.85 KB
/
Copy pathindex.html
File metadata and controls
48 lines (44 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frontend Mentor | Blog Preview Card</title>
<!-- Favicon for the webpage -->
<link rel="shortcut icon" href="./assets/images/favicon-32x32.png" type="image/x-icon">
<!-- Link to the external CSS stylesheet -->
<link rel="stylesheet" href="./style.css">
</head>
<body>
<main>
<article class="container">
<!-- Blog image -->
<img src="./assets/images/illustration-article.svg" alt="Illustration for the article" loading="lazy"
class="blog-image">
<!-- Category of the blog post -->
<span class="category">Learning</span>
<!-- Published date of the blog post -->
<p class="published-date">Published 21 Dec 2023</p>
<!-- Title of the blog post -->
<h2 class="title" aria-label="Read more about HTML & CSS foundations">HTML & CSS foundations</h2>
<!-- Description of the blog post -->
<p class="description">These languages are the backbone of every website, defining structure, content, and
presentation.</p>
<div class="avatar-profile">
<!-- Author's avatar image -->
<img src="./assets/images/image-avatar.webp" alt="Author's avatar" class="avatar-image" loading="lazy"
aria-label="Author's avatar">
<!-- Author's name -->
<address class="author">Greg Hooper</address>
</div>
</article>
</main>
<div class="attribution">
<!-- Attribution for the challenge -->
Challenge by <a href="https://www.frontendmentor.io/challenges/blog-preview-card-ckPaj01IcS" target="_blank"
rel="noopener noreferrer">Frontend Mentor</a>.
<!-- Attribution for the coder -->
Coded by <a href="https://github.com/Mayen007" target="_blank" rel="noopener">Mayen007</a>.
</div>
</body>
</html>