Skip to content

Instantly share code, notes, and snippets.

@eljojo
Created May 30, 2015 13:51
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 eljojo/1ad414ee17e48d77758c to your computer and use it in GitHub Desktop.
Save eljojo/1ad414ee17e48d77758c to your computer and use it in GitHub Desktop.
<html>
<head>
<title>This is the title</title>
<link rel="stylesheet" href="http://railsgirls.com/assets/bootstrap.css">
<link rel="stylesheet" href="http://railsgirls.com/assets/bootstrap-theme.css">
</head>
<body>
<h1>Hello HTML!</h1>
<p>How's it going?</p>
<form action="/add_to_list" method="get">
<input name="name_of_the_thing_to_buy" type="text">
<button type="submit" class="btn btn-success">Greet me!</button>
</form>
<h2>Things to buy</h2>
<ul>
<li>Milk</li>
<li>Milk</li>
<li>Milk</li>
<li>Milk</li>
<li>Milk</li>
<li>Milk</li>
<li>Milk</li>
<li>Milk</li>
<li>Milk</li>
<li>Milk</li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment