Answer:
Explanation:
The following is the barebones HTML code for the form which can be saved as is or implemented into your own site. No styling or images were added since that is done based on the overall styling of the website in which the code is being implemented.
<!DOCTYPE html>
<html>
<body>
<h2>Car Rental Store</h2>
<form action="/action_page.php">
<label for="fname">Number of Days:</label><br>
<input type="text" id="fname" name="fname" value="Ex. 20"><br><br>
<label for="lname">Vehicle Type:</label><br>
<input type="text" id="lname" name="lname" value="Ex. SUV"><br><br>
<label for="lname">Number of Designated Drivers:</label><br>
<input type="text" id="lname" name="lname" value="Ex. 2"><br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>