47 lines
1,014 B
HTML
47 lines
1,014 B
HTML
<!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: #fff3b0;
|
|
}
|
|
.title {
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
margin-bottom: 10px;
|
|
}
|
|
.image-container {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
.image {
|
|
max-width: 80%;
|
|
height: auto;
|
|
}
|
|
.description {
|
|
font-size: 16px;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<link rel="icon" href="Dangrain.ico" type="image/x-icon">
|
|
<body>
|
|
<div class="title">Dangrain</div>
|
|
<li><a href="Redditlike.HTML">Home</a></li>
|
|
<div class="image-container">
|
|
<img class="image" src="Dangrain.jpg" alt="Image">
|
|
</div>
|
|
<div class="description">Founder of Redditlike, ordinary game dev, and website keeper. KDR < Alec Baldwin</div>
|
|
</body>
|
|
</html>
|
|
|