-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 826 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog-preview-card</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" sizes="32x32" href="./assest/favicon-32x32.png">
</head>
<body>
<div class="card">
<img src="./assest/illustration-article.svg" alt="card-image">
<h3>Learning</h3>
<p>Published 21 Dec 2023</p>
<h2>HTML & CSS foundations</h2>
<p id="text">These languages are the backbone of every website, defining structure, content, and presentation.</p>
<div class="lastimg">
<img src="./assest/image-avatar.webp" alt="Greg-image">
<p id="name">Greg Hooper</p>
</div>
</div>
</body>
</html>