Created
May 30, 2015 13:51
-
-
Save eljojo/1ad414ee17e48d77758c to your computer and use it in GitHub Desktop.
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> | |
<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