Raunak wants to create a form in Access. Suggest him what are the steps he need to use apply for creating a form with heading and title
Answers
Answered by
0
Answer:
if you want make a form in html
follow this
Explanation:
<!DOCTYPE html>
<html>
<body>
<div align="center">
<h2>HTML Forms</h2>
<form action="/action_page.php">
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" value="pb"><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname" value="playstation"><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>
</div>
</body>
</html>
please mark me as the brainliest
Similar questions