xxxxxxxxxx
60
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Watsup's Personal Webpage</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
text-align: center;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.pizza {
background-color: #ffd700;
width: 100px;
height: 100px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin: 20px auto;
}
.pepperoni {
width: 30px;
height: 30px;
background-color: #ff0000;
border-radius: 50%;
margin: 5px;
}
.pizzapic {
transform: rotate(90deg);
}
</style>
</head>
<body>
<div class="container">
<h1>im watsup</h1>
<p>wat sup dudes i need some pizza </p>
<div class="pizza">
<image src="pizza.png" class="pizzapic" width="100"></image>
</div>
</div>
</body>
</html>