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

<!

DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>facebook copy cat</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #e9ebee;
}

.header {
background-color: #3b5998;
color: white;
padding: 10px 20px;
text-align: center;
}

.content {
width: 500px;
margin: 40px auto;
background-color: white;
padding: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer {
background-color: #3b5998;
color: white;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>

<div class="header">
<h1>Ny Antso Book</h1>
</div>
<div class="content">
<h2>Connexion</h2>
<form>
<input type="text" placeholder="Adresse e-mail ou téléphone" required><br><br>
<input type="password" placeholder="Mot de passe" required><br><br>
<button type="submit">Se connecter</button>
</form>
</div>

<div class="footer">
<p>© 2024 NAB</p>
</div>

</body>
</html>

You might also like