-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
19 lines (19 loc) · 716 Bytes
/
index.html
File metadata and controls
19 lines (19 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!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="styles.css">
<title>Blog Post Card</title>
</head>
<body>
<div class="blog-post-card">
<img src="https://cdn.freecodecamp.org/curriculum/labs/cover-photo.jpg" alt="Cover picture of the post" class="post-img">
<div class="post-content">
<h2 class="post-title">Computer science</h2>
<p class="post-excerpt">Stay ahead of the curve with the latest trends in web development. Discover what's new</p>
<a href="" class="read-more">Read More</a>
</div>
</div>
</body>
</html>