Skip to content

Instantly share code, notes, and snippets.

@laras126
Created July 14, 2014 23:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save laras126/dae4ef3c249ff0e6e334 to your computer and use it in GitHub Desktop.
Save laras126/dae4ef3c249ff0e6e334 to your computer and use it in GitHub Desktop.
Comic link: http://notlaura.com/internet-works-comic/
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Form Demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="http://necolas.github.io/normalize.css/3.0.1/normalize.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="wrapper">
<h1>Tell us how you are feeling!</h1>
<form>
<label for="name">Your name:</label>
<input name="name" type="text" />
<label for="mood">How are you feeling today?</label>
<input name="mood" type="text" />
<input type="submit" name="submit" value="Save">
</form>
</div> <!-- /wrapper -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment