<!DOCTYPE html>
<html>
<head>
<style>
form {
display: block;
margin-top: 0em;
}
</style>
</head>
<body>
<p>A form element is displayed like this:</p>
<form action="/action_page.php">
<label for="fname">First name:</label>
<input type="text" id="fname" name="fname" value="Mickey"><br>
<label for="lname">Last name:</label>
<input type="text" id="lname" name="lname" value="Mouse"><br>
<input type="submit" value="Submit">
</form>
<p>Change the default CSS settings to see the effect.</p>
</body>
</html>