HTML and CSS
The Basics - HTML
<html>
<head>
<title>This is a webpage title and it appears in the browser chrome</title>
<head>
<body>
<p>
<The main part of the webpage appears between the body tags><p>
</body>
<html>
Essential Tags
<p> <!--- Paragraph -->
<br> <!--- Line break without a new paragraph --->
<strong> <!--- used to bold text ---->
<em> <!--- used to italicise text -->
<h1> <!--- H1 to H9 are heading tags -->
<ol> <!--- Ordered (numbered) lists -->
<li> <!--- List item within a list --->
<ul> <!--- Unordered (Bulleted) lists --->
<a href="http://www.google.co.uk>Link to Google</a> <!--- Hyperlink --->
<img src="myimage.gif" alt="test image"/> <!--- Image ---->