-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 989 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
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Blog Preview</title>
<link rel="stylesheet" href="screen.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
</head>
<body>
<article>
<img src="images/illustration-article.svg" alt="">
<header>
<h1><a href="">HTML & CSS foundations</a></h1>
<span>Published 21 Dec 2023</span>
<ul class="tags">
<li>Learning</li>
</ul>
</header>
<p>These languages are the backbone of every website, defining structure, content, and presentation.</p>
<footer>
<img src="images/image-avatar.webp" alt="headshot">
Greg Hooper
</footer>
</article>
<footer class="attribution">
Code by <a href="https://github.com/redstar504">Brayden Williams</a>
for <a href="https://frontendmentor.io">Frontend Mentor</a>
</footer>
</body>
</html>