
Joshua A. answered 05/10/19
Affordable GIS Trainer
This is not an exact example for you, but it illustrates how using "placeholder" instead of value, solves your issue. Good Luck. Hope this helps.
<!DOCTYPE html>
<html>
<body>
<h2>HTML Forms</h2>
<form action="/action_page.php">
First name:<br>
<input type="text" name="firstname" placeholder="Mickey">
<br>
Last name:<br>
<input type="text" name="lastname" placeholder="Mouse">
<br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>