-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 921 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 921 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog Card</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main>
<div class="card">
<img src="https://raw.githubusercontent.com/XY782/Blog-post-card/42bdacda625ccad3dcdab0c73d0e9b699120ec5f/illustration-article.svg" alt="Blog thumbnail">
<div class="card-content">
<span class="tag">Learning</span>
<div class="date">Published 21 Dec 2023</div>
<h1>HTML & CSS foundations</h1>
<p>These languages are the backbone of every website, defining structure, content, and presentation.</p>
<div class="author">
<img src="https://raw.githubusercontent.com/XY782/Blog-post-card/refs/heads/main/image-avatar.webp" alt="Author">
<span>Greg Hooper</span>
</div>
</div>
</div>
</main>
</body>
</html>