KOTH_wordpress/site.html

27 lines
454 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<title>I love pringle!</title>
2023-02-28 21:45:38 -05:00
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
h1, img {
max-width: 100%;
width: 100%;
}
</style>
</head>
2023-02-28 21:45:38 -05:00
<body>
<h1>I love pringle so much! Look at this silly little goober, how could you not love this adorable little guy?</h1>
<img src="./pringle.jpg">
</body>
</html>