HTML Help Contents Page
Below should be all, or at least most, of the html terms you will possibly need for creation in your website
Happy Coding!
Below should be listed most html tags, if not all of them - All html tags click through to their own page (when the site is fully operational)
Section 1 - Main Html Tags you must have in your webpage<!DOCTYPE> - Every Page on your site must have one of these!
<html> - Defines the start of html code
<head> - Defines the 'head' of the document
</head> - Defines the end of the head of the document
<title> - Defines the 'title' of the page, this will appear at the top of your browser window
</title> - Defines the end of the 'title' code
<body> - Defines the start of the 'body' part of your page (where the content goes)
</body> - Defines the end of the 'body' part of your page
<h1> - Defines the start of the 'h1' tag that includes page relevant information
</h1> - Defines the end of the 'h1' tag that includes page relevant information
Review of Section 1 - View a review of the tags above
Section 2 - Html Tags you should use to display content on a webpage
<p> - Defines the start of a paragraph
</p> - Defines the end of a paragraph
