Big Bad Kangaroo

All the text and images for bbk

 <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image and Text Layout</title>
<style>
.container {
display: flex;
align-items: center;
}
.container img {
max-width: 50%;
height: auto;
}
.container .text {
margin-left: 20px;
}
</style>
</head>
<body>

<div class="container">
<img src="image.png" alt="Colorful Abstract Human">
<div class="text">
<h1>Title Here</h1>
<p>
This is a sample text that will appear next to the image. You can write anything here, such as a description of the image or any other content you'd like to include.
</p>
</div>
</div>

</body>
</html>

 This is a text editor