Skip to content

Instantly share code, notes, and snippets.

@kylewelsby
Created September 2, 2013 19:32
Show Gist options
  • Save kylewelsby/6416501 to your computer and use it in GitHub Desktop.
Save kylewelsby/6416501 to your computer and use it in GitHub Desktop.
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Page</title>
</head>
<body>
<div>
<div>
<strong>Hello World</strong>
<p>just keep <strong>spinning</strong></p>
<img src="http://dummyimage.com/100" width=100 height=100/>
</div>
<div>
<strong>Hello Computer</strong>
<p>how about that <strong>machine?</strong></p>
</div>
</div>
<div>
<a href="#"><span>A link</span></a>
</div>
<form action="#">
<p>
<input type="text" name="username"/><br/>
<input type="password" name="password"/>
<p>
<p>
<select name="gender">
<option></option>
<option value="male">Male</option>
<option value="female">Female</option>
</select>
</p>
<p>
<input type="radio" name="opt" value="in" id="in">
<label for="in">Opt in</label><br/>
<input type="radio" name="opt" value="out" id="out">
<label for="out">Opt out</label>
</p>
<p>
<input type="checkbox" name="terms" value="true" id="terms">
<label for="terms">accept terms</label><br/>
<input type="checkbox" name="spam" value="true" id="terms" checked>
<label for="terms">accept spam</label><br/>
</p>
</form>
<ol>
<li><a href="#previous">Previous</a></li>
<li><a href="#current">Current</a></li>
<li><a href="#next"><span>Next</span></a></li>
</ol>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment