mirror of
https://github.com/servo/servo.git
synced 2025-06-10 01:23:13 +00:00
21 lines
387 B
HTML
21 lines
387 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
|
|
<form>
|
|
First name:<br>
|
|
<input type="text" name="firstname" value="Mickey" required>
|
|
<br>
|
|
Last name:<br>
|
|
<input type="text" name="lastname" value="Mouse" required>
|
|
<br><br>
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
|
|
<p>If you click the "Submit" button, the form-data will be sent to a page called "action_page.php".</p>
|
|
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|