<html>
<head>
some code here
</head>
<body>
<form action="inpute.html" method="POST">
Your username: <input type="text" name="username"><br>
Your password: <input type="password" name="password"><br>
Gender: Male: <input type="radio" name="gender" value="male"> Female: <input type="radio" name="gender" value="female"><br>
Vehicle: Car: <input type="checkbox" name="vehicle" value="car"> Bike: <input type="checkbox" name="vehicle" value="bike"><br>
<input type="submit" value="Go!">
</form>
</body>
</html>
Will show like this:
Your username:
Your password:
Gender: Male: Female:
Vehicle: Car: Bike: