Search Header Logo
HTML Lesson 2

HTML Lesson 2

Assessment

Presentation

Computers

12th Grade

Easy

Created by

Mr Gabriel

Used 15+ times

FREE Resource

12 Slides • 7 Questions

1

HTML - Structured Tags

2

Structured Tags

  • H1 - H6 Tags

  • P tags

  • Br Tags

  • Hr Tags

  • Div

  • Ul and Li Tags

  • Ol and Li Tags

media

3

Heading Tag

<h1> </h1>

The <h1> to <h6> tags are used to define HTML headings.

<h1> defines the most important heading and the biggest. <h6> defines the least important heading which is the smallest.

media

4

media

media

​Heading Tag example:

5

Multiple Choice

Which heading tag displays the largest text?

1

<h6>

2

<h5>

3

<h1>

4

<h3>

5

<h2>

6

Labelling

Place the heading tags in its proper location.

Drag labels to their correct position on the image

<h1>

</h5>

</h3>

<h2>

<h3>

<h5>

</h2>

</h1>

7

Paragraphs Tag

<p> </p>

A paragraph always starts on a new line, and browsers automatically add some space (margin) before and after a paragraph.

media

8

Line Break Tag

The <br> tag inserts a single line break.

The <br> tag is useful for writing addresses or other form of text.

The <br> tag is an empty tag which means that it has no end tag.

<br />

media

9

Multiple Choice

Does the line break tag "<br />" have a closing tag?

1

Yes

2

No

10

media
media

​Differences Between <br /> and the <p> </p> Tags

11

Multiple Select

Select the two tags that breaks the line.

1

<p>

2

<hr />

3

<br />

4

<dv>

12

Horizontal Rule Tag

The <hr> tag defines a thematic break in an HTML page (e.g. a shift of topic).

The <hr> element is most often displayed as a horizontal rule that is used to separate content (or define a change) in an HTML page.

<hr />

13

media

Example of an Ordered and Unordered List

media

14

Unordered List Tags

<ul> </ul>

An unordered list starts with the <ul> tag. Each list item starts with the <li> tag.

The list items will be marked with bullets (small black circles) by default.

media

15

Dropdown

Create an Unordered list tag

<​
>

<​
>list 1 <​
>

<​li> List 2 <​
>

<​
>

16

Ordered List Tags

<ol> </ol>

An ordered list starts with the <ol> tag. Each listed item starts with the <li> tag.


The list items will be marked with numbers by default.

media

17

Dropdown

Create an ordered list tag

<​
>

<​
>list 1 <​
>

<​li> List 2 <​
>

<​
>

18

Open Ended

Question image

Utilize this image and write HTML code matching this Image.

Remember:

<h1> </h1> - for heading.

<ul> </ul> - unordered list

<ol> </ol> - ordered list

<li> </li> - lists

19

Classwork

Create an unordered and ordered list.

  • Open Visual Studio Code

  • Name your file Classwork-2.html

  • Start with the basics <!DOCTYPE html>

  • Create a random list using the <ol>, <ul> & <li> tags

  • Classwork will be graded today

HTML - Structured Tags

Show answer

Auto Play

Slide 1 / 19

SLIDE