WRITE DOWN THE CODES TO CREATE A COMMENTING PAGE LIKE GIVEN IN THE ATTACHMENT
THE NAME IS 1
AND THE MESSAGE IS ONE
HELP ME PLS
Attachments:
Answers
Answered by
1
Answer:
Explanation: using html u can create that page
forms concept is used to create that page
go through it
<!DOCTYPE html>
<html>
<body>
<h2>HTML Forms</h2>
<form action="/action_page.php">
First name:<br>
<input type="text" name="firstname" value="Mickey">
<br>
Last name:<br>
<input type="text" name="lastname" value="Mouse">
<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>
HTML Forms
First name:
Mickey
Last name:
Mouse
If you click the "Submit" button, the form-data will be sent to a page called "/action_page.php".
Similar questions