Spam is an absolute nuisance – especially when you receive repetitive contact form submissions regarding a product or service you have no interest in. This simple guide will help you…
Stop spam through my website – Google reCaptcha
Lesson 2 – Basic HTML elements
HTML Headings HTML is comprised of 6 heading sizes: h1 to h6 h1 – Largest heading h2 – Large heading h3 – Medium heading h4 – Small heading h5 –…
Lesson 1 – Introduction to HTML
HTML stands for Hyper Text Markup Language and is comprised of tags which are structured as follows: content goes here… Every HTML page has the following standard tags: html head…
Lesson 3 – HTML styling using CSS
Styling of HTML can be done in a number of ways. The easiest and often the least recommended way is to use inline styling where a style is applied to…
Lesson 4 – HTML text formatting
There are a couple of basic HTML text formatting elements, some of which include: b – bold text i – italic text strong – strong text small – small text…
Lesson 5 – HTML comments and tags
HTML comments It's always good practice to insert comments which help others understand your code. Note that there is a difference between comments which describe sections of code, and commented…
Lesson 7 – HTML Lists
HTML is comprised of two types of lists: ordered lists and unordered lists Ordered lists Ordered lists are numbered sequentially and are created using ol tags See the Pen HTML…
Lesson 8 – HTML tables
HTML tables are created using table tags. Headings are created in the table using th tags and rows are created using the tr tags. Cells are created using td elements….
Lesson 9 – HTML block and inline elements
There are two main ways in which elements can be displayed in HTML: Block or inline Block-level elements Block-level elements begin on a new line and take up the full…
Lesson 10 – HTML meta tags
Meta tags define how browsers are to render web page content and they also provide information which search engines use to determine the relevance of the web page. The most…
