šŸ”’ Locked for test

Welcome to Learn HTML 101

<!DOCTYPE html> tells the browser the page uses HTML5.

HTML stands for HyperText Markup Language. It is used to build websites and organize content.

HTML uses tags to create elements.

Example:

<p>Hello World</p>
šŸ”’ Locked for test

Lesson 1: Headings & Paragraphs

Headings organize the structure of a webpage.

Paragraphs use the <p> tag.

Example:

<h1>My Website</h1>
<p>Welcome to my website</p>

Good headings help users and search engines understand your page.

šŸ”’ Locked for test

Lesson 2: Links

Links connect pages and websites together.

The <a> tag creates links.

The href attribute controls where the link goes.

Example:

<a href="https://google.com">Go to Google</a>
šŸ”’ Locked for test

Lesson 3: Lists

Lists organize information clearly.

Example:

<ul>
  <li>Apple</li>
  <li>Banana</li>
</ul>

Lists are used in menus, instructions, and grouped information.

Test

1. What is the biggest heading tag?

2. What tag creates links?

3. What tag creates an unordered list?



šŸ† Certificate of Completion

Successfully completed the HTML Course

šŸ”’ Locked for test

HTML AI Bot

Citations

https://www.w3schools.com/html/default.asp