added css

This commit is contained in:
John Doe 2023-02-28 21:45:38 -05:00
parent fce1516fdc
commit 960fa026ce

View File

@ -2,7 +2,25 @@
<html>
<head>
<title>I love pringle!</title>
</html>
<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>
<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>
<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>