joke_websites/blobb.no/index.html

41 lines
759 B
HTML
Raw Normal View History

2025-06-25 17:35:52 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-06-25 18:07:05 +00:00
<title>Blobb</title>
2025-06-25 17:35:52 +00:00
<style>
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f9f9f9;
font-family: Arial, sans-serif;
text-align: center;
}
.container {
max-width: 400px;
}
img {
max-width: 100%;
height: auto;
border-radius: 8px;
}
p {
margin-top: 10px;
font-size: 16px;
color: #555;
}
</style>
</head>
<body>
<div class="container">
<img src="blobb.gif" alt="Placeholder Image">
2025-06-27 13:47:24 +00:00
<p>Blobb</p>
2025-06-25 17:35:52 +00:00
</div>
</body>
</html>