diff --git a/example.html b/example.html index 4608199..0fbf98a 100644 --- a/example.html +++ b/example.html @@ -15,7 +15,8 @@

Headings and paragraphs (this is an h2 heading)

Paragraphs are separated using p tags. This automatically separates them into blocks, leaving a gap in between.

Within a paragraph you can make text bold or italic. In fact it's probably bad to think of these as bold and italic - instead you should genuinely consider them as 'strong' and 'emphasised' - you can decide exactly how to display them in you css, bold and italic are just the defaults. This is an example of symantic markup: you're adding information as to the interpretation of certain words, rather than dictating how they should be displayed.

- + +

Blank lines and void tags

It is also possible to insert extra blank lines manually using the br tag. The br tag is a special type of tag (called a 'void tag'); you don't need a closing br tag, just un opening one.