bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/HTML/HTML Foundations
HTML•HTML Foundations

HTML Tutorial

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind HTML Tutorial?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Fill blank

Complete the missing token from the example code.

<!___ html>
3Order

Put the learning moves in the order that makes the concept easiest to apply.

HTML is easy to learn - You will enjoy it!
With HTML you can create your own Website.
HTML is the standard markup language for Web pages.

Learn HTML

HTML is the standard markup language for Web pages.

With HTML you can create your own Website.

HTML is easy to learn - You will enjoy it!

Example

Formatted code
<!DOCTYPE html>

<html>
<head>
<title>Page Title</title>

</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>

</body>
</html>

Live preview

Next

HTML Introduction