HTML Tutorial

HTML is an accronym for Hyper Text Markup Language. As the name suggests, HTML is a markup form that is useful for presenting information on the web. As of 2013, HTML is nearly in it's fifth version.

Some Terms to Keep in Mind

General Rules of Thumb

Basic Structure

Every HTML document starts like this:

<html>
	<head>
		<title>Title: Appears on your browser tab</title>
	</head>
	<body>
		<!-- 
		This is an HTML comment block
		-->
	</body>
</html>
				

Learn about: Head Elements - Tags that can be used within the <head> section.
Learn about: Body Elements - Tags that can be used within the <body> section.