Skip to content

Instantly share code, notes, and snippets.

@Kmacpher
Last active February 15, 2018 20:23
Show Gist options
  • Save Kmacpher/697655889e4fb9d5cea2958d4c14f7f4 to your computer and use it in GitHub Desktop.
Save Kmacpher/697655889e4fb9d5cea2958d4c14f7f4 to your computer and use it in GitHub Desktop.
GG step 1 solution
<div id='app'>
<div id='headers'>
<h1 id='title'>Play the Guessing Game!</h1>
<h3 id='subtitle'>Guess a number between 1-100!</h3>
</div>
<div id='main'>
<div>
<input placeholder="#" maxlength='3' autofocus=autofocus></input>
<button>Go!</button>
</div>
<div id='guesses'>
<ul>
<li>-</li>
<li>-</li>
<li>-</li>
<li>-</li>
<li>-</li>
</ul>
</div>
<div id="menu-btns">
<button>Reset</button>
<button>Hint</button>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment