programming-examples/html/Form/form_input_text_required.html
2019-11-15 12:59:38 +01:00

14 lines
227 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Html5</title>
<meta charset="UTF-8">
</head>
<body>
<form action="">
Email (required):
<input type="text" name="mail" required><br>
<input type="submit" value="Send">
</form>
</body>
</html>