Computer Science, asked by mamtarkumawat, 3 months ago

write the HTML5 code with CSS as follows to create form to accept name age email address from the user​

Answers

Answered by dattarajshinde44
4

Answer:

<html>

<head>

</head>

<body>

<form>

 <label for="fname">First name:</label>

 <input type="text" id="fname" name="fname"><br><br>

 <label for="lname">Last name:</label>

 <input type="text" id="lname" name="lname"><br><br>

 <input type="button" onclick="formSubmit()" value="Continue">

</form>

</body>

</html>

Similar questions