Greeting Maker

Enter your name

Your greeting will appear here.

Important HTML

JavaScript finds these ids to read the name, listen for the button click, and write the greeting.

<input id="name" type="text" name="name" placeholder="Your name">
<button id="greet-button" type="button">Greet me</button>
<h2 id="greeting">Your greeting will appear here.</h2>