Pizza

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pizza Lover</title>
<style>
body {
font-family: 'Comic Sans MS', cursive, sans-serif;
margin: 0;
padding: 0;
background-image: url('pizza-background.jpg'); /* Replace 'pizza-
background.jpg' with your pizza background image URL */
background-size: cover;
background-position: center;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}

#message-container {
background-color: rgba(255, 255, 255, 0.8);
padding: 20px;
border-radius: 10px;
}
</style>
</head>
<body>

<div id="message-container">
<p>PGR, I know what you did, you love pizza au fromage</p>
</div>

</body>
</html>

You might also like