Created
October 22, 2016 14:44
-
-
Save quentin-aslan/6eb2d86de28d39f7d85bdc69a24dc4d5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Challenge</title> | |
</head> | |
<body> | |
<form action="action.php" method="POST"> | |
<p> | |
<label>Nom </label> | |
<input type="text" name="nom" /> | |
</p> | |
<p> | |
<label>Sujet</label> | |
<input type="text" name="sujet"> | |
</p> | |
<p> | |
<label>Email</label> | |
<input type="email" name="email"> | |
</p> | |
<p> | |
<label>Texte</label> | |
<textarea name="text"></textarea> | |
</p> | |
<input type="submit" /> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment