-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (40 loc) · 1.37 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png" />
<link rel="stylesheet" href="./styles.css" />
<title>Frontend Mentor | Blog preview card</title>
</head>
<body>
<main class="card">
<img
src="./assets/images/illustration-article.svg"
width="336"
height="200"
alt="Illustration showing Html and Css as abstract art"
/>
<section class="textcontent">
<div class="subject">
<h2>Learning</h2>
</div>
<p class="date">Published 21 Dec 2023</p>
<h1 class="headline">HTML & CSS foundations</h1>
<p class="blogcontent">
These languages are the backbone of every website, defining structure, content, and
presentation.
</p>
</section>
<footer>
<img class="avatar" src="./assets/images/image-avatar.webp" alt="Author avatar" />
<h2>Greg Hooper</h2>
</footer>
</main>
<footer class="attribution">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>
Coded by <a href="https://www.felixdrawe.de/" target="_blank">Felix Drawe</a>
</footer>
</body>
</html>