Skip to content

Instantly share code, notes, and snippets.

@hhua
Created January 24, 2014 01:40
Show Gist options
  • Save hhua/8590587 to your computer and use it in GitHub Desktop.
Save hhua/8590587 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Learning</title>
</head>
<body>
<a href="http://www.google.com">google</a>
<!-- start of header -->
<h1>Hello</h1>
<h2>Hello</h2>
<h3>Hello</h3>
<h4>Hello</h4>
<h5>Hello</h5>
<h6>Hello</h6>
<!-- end of header -->
<!-- img for logo -->
<img src="http://farm6.staticflickr.com/5507/11992461626_bd1a71ce50_b.jpg" />
<div>Hello, World!</div>
<div>Hello, World!</div>
<span>Hello</span>
<span> | Hello</span>
<ul>
<li>Jesus Christ</li>
<li>Jesus Christ</li>
<li>Jesus Christ</li>
<li>Jesus Christ</li>
<li>Jesus Christ</li>
</ul>
<ol>
<li>Jesus Christ</li>
<li>Jesus Christ</li>
<li>Jesus Christ</li>
<li>Jesus Christ</li>
<li>Jesus Christ</li>
</ol>
<iframe width="1280" height="720" src="//www.youtube.com/embed/5VSodrgSSF8" frameborder="0" allowfullscreen></iframe>
<table>
<tr> <!-- a table row -->
<td>row 1, cell 1</td> <!-- a table data cell -->
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
<div id="basic_info" class="sidebar pull-right">
<form>
<input type="text" value="submit" />
<input type="password" name="pwd" />
<input type="button" value="submit" />
<textarea rows="10" cols="30"></textarea>
<label for="username">User Name: </label>
<input type="text" name="username" id="username" />
<!-- Radio button -->
<input type="radio" name="sex" value="male" /> Male
<input type="radio" name="sex" value="female" /> Female
<!-- Checkbox -->
<input type="checkbox" name="vehicle" value="Bike" /> I have a bike
<input type="checkbox" name="vehicle" value="Car" /> I have a car
</form>
</div>
<select name="preferred_title">
<option value="">None</option>
<option value="Mrs.">Mrs.</option>
<option value="Ms.">Ms.</option>
<option value="Miss">Miss</option>
<option value="Mr.">Mr.</option>
<option value="Dr.">Dr.</option>
</select>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment