Answer this question of HTML..
Answers
Answer:
The Provisional Government was the formally constituted authority in Russia, with responsibility for the conduct of the war between February and October 1917. It was formed when the tsar's government collapsed after protests over food shortages and unemployment gathered momentum in the last week of February 1917.
<html>
<head>
<title>practical practice003</title>
</head>
<body>
<h1><center>Enter your Details</center></h2>
<form>
First name:<br>
<input type="text" name="fname"><br><br>
Last name:<br>
<input type="text" name="lname"><br><br>
e-mail:<br>
<input type="text" name="lname"><br><br>
<input type="radio" name="gender" value="male">Male<br>
<input type="radio" name="gender" value="female">Female<br>
<button type="submit">Submit</button>
</form>
</body>
</html>