How to use input type text with placeholder attribute to specify info about the expected value in HTML

1 Answer

0 votes
<!DOCTYPE html>
<html>
<body>

<form action="">
 <input type="text" name="companyname" placeholder="Company name"> 
 <input type="submit">
</form>

</body>
</html>

 



answered Jan 7, 2019 by avibootz
...