HTML Tags and Elements

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/17

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering HTML structure, tags, elements, heading hierarchy, lists, links, and image attributes for Computer Science 8.

Last updated 1:11 PM on 9/2/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

18 Terms

1
New cards

HTML

HyperText Markup Language; used to structure web pages and tell the browser what each piece of content is.

2
New cards

HTML Tag

Code wrapped in angle brackets (such as

) that tells the browser what to do with content.


3
New cards

HTML Element

The complete structure formed by an opening tag, content, and a closing tag combined together.

4
New cards

Opening Tag

The starting tag of an HTML element, such as

.

5
New cards

Closing Tag

The ending tag of an HTML element, which usually contains a forward slash / (such as

).


6
New cards

Heading Tags

Tags ranging from

up to

used to organize content, where

is the main/highest-level heading.


7
New cards

Heading Hierarchy

The organizational structure where

represents the main title,

represents a section,

represents a subsection, and

represents detail.


8
New cards


The paragraph tag used for blocks of text to improve content organization and readability.

9
New cards

The line break tag that moves content to the next line without requiring a closing tag.

10
New cards

The image tag used to display images on a web page.

11
New cards

src

An attribute of the tag that specifies where the image is located.

12
New cards

alt

An attribute of the tag that provides alternative text describing what the image is, helping when an image cannot load.

13
New cards

The anchor or link tag used to create clickable links on a webpage.

15
New cards

    The ordered list tag used to create lists where the order matters (numbered 1, 2, 3).

    16
    New cards

      The unordered list tag used to create bulleted lists where the sequence or order does not matter.

      17
      New cards
    • The list item tag used inside

        or
          elements to define individual list items.

      18
      New cards

      The HTML tag used to group important navigation links together.