-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.68 KB
/
Copy pathindex.html
File metadata and controls
42 lines (42 loc) · 1.68 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description"
content="Explore the foundations of HTML and CSS with Gred Hooper's insightful guide. Learn about the backbones of every website, defining structure, content, and presentation.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog preview card</title>
<link rel="stylesheet" href="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=Figtree:wght@600;800&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="images/favicon-32x32.png" type="image/x-icon">
</head>
<body>
<main>
<div class="card" role="article">
<img src="images/illustration-article.svg" alt="">
<div class="card-tag">
<p class="card-tag-name">
Learning
</p>
</div>
<div class="card-text">
<p class="publication-date">
Published on
<time datetime="2023-12-21">21st Dec 2023</time>
</p>
<h2>HTML & CSS foundations</h2>
<p class="card-description">
These languages are the backbones of every website, defining structure, content, and presentation.
</p>
<div class="card-author">
<img src="images/image-avatar.webp"
alt="Profile picture of Gred Hooper, the author of the article">
<p class="card-author-name">Gred Hooper</p>
</div>
</div>
</div>
</main>
</body>
</html>