We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f33966 commit 83b090eCopy full SHA for 83b090e
hh
@@ -0,0 +1,19 @@
1
+<!DOCTYPE html>
2
+<html>
3
+<body>
4
+
5
+<h2>HTML Forms</h2>
6
7
+<form action="/action_page.php">
8
+ <label for="fname">First name:</label><br>
9
+ <input type="text" id="fname" name="fname" value="John"><br>
10
+ <label for="lname">Last name:</label><br>
11
+ <input type="text" id="lname" name="lname" value="Doe"><br><br>
12
+ <input type="submit" value="Submit">
13
+</form>
14
15
+<p>If you click the "Submit" button, the form-data will be sent to a page called "/action_page.php".</p>
16
17
+</body>
18
+</html>
19
0 commit comments