Skip to content

Instantly share code, notes, and snippets.

@kyktommy
Created December 3, 2012 07:06
Show Gist options
  • Save kyktommy/4193272 to your computer and use it in GitHub Desktop.
Save kyktommy/4193272 to your computer and use it in GitHub Desktop.
HTML fundamental part 1
<!doctype html>
<html>
<head>
<title>TOMMY's Blog</title>
</head>
<body>
<h1>TOMMY's Blog</h1>
<div>
<h3>Post 1</h3>
<p>here is some post content : )</p>
<a href="http://www.google.com">My favourite site GOOGLE</a>
</div>
<div>
<h3>Post 2</h3>
<p>Book List</p>
<ul>
<li>Dictionary</li>
<li>facebook</li>
<li>comic book</li>
</ul>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment