6150
6150
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cats on the Internet</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="header-content">
<img src="http://placekitten.com/200/200" alt="Cute cat logo">
<h1>Cats on the Internet</h1>
</div>
<nav>
<a href="#">Home</a>
<a href="#">Gallery</a>
<a href="#">Contact</a>
</nav>
</header>
<main>
<h2>Cats in the News</h2>
<div class="card-container">
<div class="card">
<img src="http://placekitten.com/301/301" alt="Cat image">
<h3>Cat in Spotlight</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit...</p>
<a href="#" class="read-more">Read More</a>
</div>
<div class="card">
<img src="http://placekitten.com/302/302" alt="Cat image">
<h3>Mystery Cat</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor...</p>
<a href="#" class="read-more">Read More</a>
</div>
<div class="card">
<img src="http://placekitten.com/303/303" alt="Cat image">
<h3>Adventurous Cat</h3>
<p>Lorem ipsum dolor sit amet...</p>
<a href="#" class="read-more">Read More</a>
</div>
</div>
</main>
<footer>
<a href="#">Privacy Policy</a>
<a href="#">Terms of Use</a>
<a href="#">Contact Us</a>
</footer>
</body>
</html>