03/10/23 firstcommit

This commit is contained in:
2023-10-03 09:22:32 +02:00
commit ae1cf1315c
60 changed files with 6143 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="css/contact.css">
<link rel="stylesheet" href="css/overflow.css">
<title>Contact</title>
</head>
<body>
<div class="contact-container">
<form class="formulaire">
<h1><span>#</span>CONTACTME</h1>
<div class="labelAndInput-container">
<label for="mail">E-mail</label>
<input type="email" id="mail" name="user_mail" placeholder="Ex : matheo.portfolio@mail.fr">
</div>
<div class="labelAndInput-container">
<label for="msg">Message</label>
<textarea id="msg" name="user_message" placeholder="Entrez votre message ici !"></textarea>
</div>
</form>
<div class="sendBtn-container">
<button class="sendButton" id="sendBtn">Envoyer !</button>
</div>
</div>
</body>
</html>