Skip to content

Commit 83b090e

Browse files
Create hh
1 parent 2f33966 commit 83b090e

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

Diff for: hh

+19
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)