-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.29 KB
/
Copy pathindex.html
File metadata and controls
34 lines (34 loc) · 1.29 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
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog Card Component</title>
<link rel="stylesheet" href="./style.css">
<link rel="icon" href="./images/fav-icon.jpg">
</head>
<body>
<div class="card-container">
<div class="card">
<div class="blog-image">
<img src="./images/blog.jpg" alt="Blog Component image">
</div>
<div class="details">
<button>Technology</button>
<p>how i built web development challenges website</p>
<p>If you're looking for inspiration to build your own side project...</p>
<div class="profile">
<img src="./images/profile.jpg" alt="Jace Knox Profile Picture">
<div class="profile-details">
<p>Jace Knox <br>
<span>4 h ago</span>
</p>
</div>
</div>
</div>
<p style="text-align: center; margin-top: 60px; font-size: 0.8rem;">Challenge by Frontend Pro <br>Coded by Samuel Ola</p>
</div>
</div>
</body>
</html>