my html code
my html code
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body {
background-color: #f0f2f5;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
.container {
background-color: white;
padding: 20px;
border-radius: 10px;
display: flex;
.left {
margin-right: 30px;
.left img {
width: 200px;
.right {
display: flex;
flex-direction: column;
width: 100%;
padding: 10px;
margin-bottom: 10px;
border-radius: 5px;
.right input[type="submit"] {
background-color: #1877f2;
color: white;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
.right input[type="submit"]:hover {
background-color: #155db8;
.right a {
text-decoration: none;
color: #1877f2;
margin-bottom: 10px;
</style>
</head>
<body>
<div class="container">
<div class="left">
<img src="IMG_20241022_081118.jpg">
<p>Facebook helps you connect and share with the people in your life.</p>
</div>
<div class="right">
</div>
</div>
</body>
</html>