-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 1.08 KB
/
Copy pathindex.html
File metadata and controls
28 lines (27 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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:ital,wght@0,300..900;1,300..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Blog Preview Card</title>
</head>
<body>
<div class="container">
<section class="PreviewCard">
<img src="Blog Image.png">
<span class="blogTag">Learning</span>
<p class="publishedDate">Published 1 Aug 2024</p>
<h1>HTML & CSS foundations</h1>
<p>These Lenguages are the backbone of every website, defining structure, content, and presentation</p>
<div class="user">
<img src="userpic.png" alt="user profile picture">
<span class="userName">Greg Hooper</span>
</div>
</section>
</div>
</body>
</html>