<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Blog Card</title>
<style>
/* Add your CSS styles here */
.blog-card {
max-width: 300px;
background-color: #f9f9f9;
border: 1px solid #ddd;
padding: 20px;
margin: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.blog-card img {
max-width: 100%;
height: auto;
}
.blog-card h2 {
font-size: 18px;
margin: 10px 0;
}
.blog-card p {
font-size: 14px;
color: #333;
}
</style>
</head>
<body>
<div class="blog-card">
<img src="https://picsum.photos/300/200" alt="Random Image">
<h2>Random Title</h2>
<p>Codezillaye: Exploring the Depths of Programming Mastery
In the world of s</p>
<div class="blog-card">
<img src="https://picsum.photos/300/200" alt="Random Image">
<h2>Random Title</h2>
<p>Codezillaye: Exploring the Depths of Programming Mastery
In the world of s</p>
</div>
</div>
<!-- Create more blog cards if desired -->
</body>
</html>