Last active
August 29, 2015 14:17
-
-
Save jimbojsb/e867ba4fb363254808ff to your computer and use it in GitHub Desktop.
Wes Finder - Javascript Exercise
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script> | |
<!-- fill in javascript as necessary --> | |
<!-- make the characters used counter live-updating as you type --> | |
<!-- if the user tries to submit the form with more than 140 characters, display a useful error message --> | |
<script type="text/javascript"> | |
</script> | |
<!--fill in styles as needed to make this visually appealing. Use Bootstrap classes where appropriate--> | |
<style> | |
</style> | |
<body> | |
<h1>Twitter</h1> | |
<form> | |
<textarea> | |
Sample tweet text | |
</textarea> | |
<p>Characters used: 0/140</p> | |
<input type="submit"> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment