-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (20 loc) · 759 Bytes
/
index.html
File metadata and controls
23 lines (20 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog Post Card</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="blog-post-card">
<img src="img/Blog post card.png" class="post-img" alt="a person creating a word file on google">
<div class="post-content">
<h2 class="post-title">Chequea el nuevo video de MeMasterCode</h2>
<p class="post-excerpt"> En este video, te muestro paso a paso cómo construir una Lista de Tareas (To-Do List) utilizando HTML y CSS.
</p>
<a class="read-more" href="https://youtu.be/xQWz995mKKo">Read More</a>
</div>
</div>
</body>
</html>