27 lines
457 B
HTML
27 lines
457 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>I love pringles!</title>
|
|
<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>
|
|
<body>
|
|
<h1>I love pringles so much! Look at this silly little goober, how could you not love this adorable little guy?</h1>
|
|
<img src="./pringles.jpg">
|
|
</body>
|
|
</html>
|
|
|