-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
35 lines (31 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<title>Frontend Mentor | Blog Preview Card</title>
</head>
<body>
<div class="container">
<div class="card">
<img class="card-img" alt="card-img" src="./public/illustration-article.svg"/>
<p class="type">Learning</p>
<p class="published">Published 21 Dec 2023</p>
<h1 class="title">HTML & CSS foundations</h1>
<p class="description">These languages are the backbone of every website, defining structure, content, and presentation.</p>
<div class="card-footer">
<img class="avatar" alt="avatar" src="./public/image-avatar.webp"/>
<h2 class="name">Greg Hooper</h2>
</div>
</div>
</div>
<footer class="attribution">
Challenge by <a href="https://www.frontendmentor.io/challenges/blog-preview-card-ckPaj01IcS" target="_blank" rel="noopener">Frontend
Mentor</a>.
Coded by <a href="https://github.com/gdbecker/FrontendMentorProjects/tree/main/blog-preview-card"
target="_blank" rel="noopener">Garrett Becker</a>.
</footer>
</body>
</html>