- Discovery Range
-
Trampolines
-
Swings & Slides
-
Climbing Frames
-
More Outdoor Toys
-
Indoor Toys
-
Scooters & Ride-ons
- Spare Parts
Welcome to the World of HTML
HTML, or HyperText Markup Language, is the backbone of the web. It is used to structure content on the internet. This page contains a variety of common HTML elements that are typically used in WYSIWYG editors.
Headings
HTML allows you to create headings, which help structure your content. There are six levels of headings, from <h1>
to <h6>
.
This is an H3 Heading
This is an H4 Heading
Paragraphs
Paragraphs are essential for adding blocks of text. A paragraph in HTML is created using the <p>
tag. You can include as many paragraphs as you like to make your text readable.
Here’s another paragraph. As you can see, paragraphs are separated by a blank line by default in web browsers.
Images
Images can be inserted into a webpage using the <img>
tag. The image below is an example of a cat.
Lists
There are two types of lists in HTML: ordered and unordered lists. Below is an example of each.
Unordered List
- Item one
- Item two
- Item three
Ordered List
- First item
- Second item
- Third item
Links
Links are a vital part of the web. They allow you to connect different pages together. Here is an example of a link:
Blockquotes
You can use blockquotes to highlight quotations:
"The journey of a thousand miles begins with one step." - Lao Tzu
Tables
Tables are useful for displaying data in a structured format. Below is an example of a simple table:
Name | Age | Occupation |
---|---|---|
John Doe | 30 | Engineer |
Jane Smith | 25 | Designer |
Sam Brown | 40 | Developer |
Horizontal Rule
A horizontal rule is used to create a thematic break or divide content visually.
Embedded Video
Videos can also be embedded within a page. Here's an example using an embedded YouTube video: