<!DOCTYPE html>
<html>

  <head>
    <link rel="stylesheet" href="style.css">
    <script src="script.js"></script>
  </head>

  <body>
    <h1>HTML Input Placeholder</h1>
    <input type="text" placeholder="This is a placeholder.">
  </body>

</html>
// Code goes here

/* Styles go here */

# HTML Input Placeholder

Simple example of the HTML Input placeholder
~~~~~~~~
<input type="text" placeholder="This is a placeholder.">
~~~~~~~~