You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
659 B

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<title>Exemple formulaire</title>
<link rel="stylesheet" href="style-form.css" />
</head>
<body>
<nav>
<label for="formswitch">Contact</label>
</nav>
<input type="checkbox" id="formswitch" hidden />
<form method="get" action="">
<label for="nom">Votre nom</label>
<input type="text" id="nom" name="name" value="" placeholder="Saisissez votre nom">
<label for="message">Votre message</label>
<textarea id="message" name="message" placeholder="Votre message"></textarea>
</form>
</body>
</html>