<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog Footer</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<style>
.footer {
background-color: #333;
color: #fff;
padding: 40px 0;
}
.social-card {
background-color: #444;
border: none;
}
.social-icons a {
margin-right: 10px;
color: #ccc;
font-size: 24px;
text-decoration: none;
}
.social-icons a:hover {
color: #ffcc00;
}
.code-example {
background-color: #282c34;
color: #61dafb;
padding: 20px;
border-radius: 5px;
overflow: auto;
}
.author-info {
background-color: #444;
padding: 20px;
border-radius: 5px;
}
.footer-bottom {
text-align: center;
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid #555;
}
</style>
</head>
<body>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="row">
<!-- Social Icons Card Column -->
<div class="col-md-4 mb-4">
<div class="card social-card">
<div class="card-body">
<h5 class="card-title">Follow Us</h5>
<div class="social-icons">
<a href="#" aria-label="Facebook"><span class="fab fa-facebook-f"></span></a>
<a href="#" aria-label="Twitter"><span class="fab fa-twitter"></span></a>
<a href="#" aria-label="Instagram"><span class="fab fa-instagram"></span></a>
<a href="#" aria-label="LinkedIn"><span class="fab fa-linkedin-in"></span></a>
</div>
</div>
</div>
</div>
<!-- Code Example Column -->
<div class="col-md-4 mb-4">
<h5>Code Example</h5>
<pre class="code-example">
<code>
<div class="example">
<p>This is an example code.</p>
</div>
</code>
</pre>
</div>
<!-- Author Info Column -->
<div class="col-md-4 mb-4">
<div class="author-info">
<h5>Author Info</h5>
<p><strong>Name:</strong> John Doe</p>
<p><strong>Username:</strong> codezillaye</p>
<h5>Share</h5>
<ul class="list-unstyled">
<li><a href="#" class="text-light">Facebook</a></li>
<li><a href="#" class="text-light">Twitter</a></li>
<li><a href="#" class="text-light">LinkedIn</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 AnyText Codezillaye. All rights reserved.</p>
<p>Designed by Your Name.</p>
</div>
</footer>
<!-- FontAwesome for social icons -->
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
<!-- Bootstrap JS and dependencies -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>