Skip to content

Instantly share code, notes, and snippets.

@hhua
Last active January 4, 2016 04:59
Show Gist options
  • Save hhua/8572354 to your computer and use it in GitHub Desktop.
Save hhua/8572354 to your computer and use it in GitHub Desktop.
Day 1
<!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>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment