Create Redditlikedangrain.HTML

This commit is contained in:
Dangrainage 2023-07-21 09:42:08 +02:00 committed by GitHub
parent 4e95a3024d
commit ddb893edb7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

43
Redditlikedangrain.HTML Normal file
View file

@ -0,0 +1,43 @@
<!DOCTYPE html>
<html>
<head>
<title>Dangrain</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: #f0f0f0;
}
.title {
font-size: 24px;
font-weight: bold;
text-align: center;
margin-bottom: 10px;
}
.image-container {
text-align: center;
margin-bottom: 20px;
}
.image {
max-width: 100%;
height: auto;
}
.description {
font-size: 16px;
text-align: center;
}
</style>
</head>
<body>
<div class="title">Centered Title</div>
<div class="image-container">
<img class="image" src="path/to/your/image.jpg" alt="Image">
</div>
<div class="description">Founder of Redditlike, ordinary game dev, and website keeper. KDR < Alec Baldwin</div>
</body>
</html>