2023-02-28 21:41:44 -05:00
|
|
|
<!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>
|
2023-02-28 21:41:44 -05:00
|
|
|
</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>
|
|
|
|
|