HTML Fundamentals Vocabulary

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/22

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering essential HTML terms, structural elements, tags, and attributes based on the lecture transcript.

Last updated 11:28 PM on 8/23/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

23 Terms

1
New cards
<p>HTML</p>

HTML

HyperText Markup Language; the standard markup language for creating web pages that describes page structure using elements.

2
New cards

<!DOCTYPE html>

A document declaration placed at the very beginning of an HTML file to define it as HTML5.

3
New cards
4
New cards

The root element of an HTML document that wraps all other content on the page.

5
New cards

An HTML element containing meta information about the page—such as the title, links to CSS, and meta tags—that is not displayed directly on the webpage.

6
New cards

An element inside the head tag that sets the text shown in the browser tab.

7
New cards

The root visual container element that holds everything visible to the user on a webpage.

8
New cards

HTML Element

A component of an HTML document that usually consists of a start tag, content, and an end tag, though some are empty elements.

9
New cards

Empty Elements

HTML elements that do not contain content or closing tags, such as
,


, and .

10
New cards

Nesting

The core HTML practice of placing elements inside other elements to build structural hierarchy.

11
New cards

HTML Attributes

Name and value pairs located inside an element's start tag that provide additional information used by the browser to render content correctly.

12
New cards

href

An attribute that specifies the destination URL or file path for a hyperlink tag.

13
New cards

src

An attribute that specifies the source file path for visual or functional assets such as images () or scripts.

14
New cards

alt

An attribute that provides alternative descriptive text for image () tags.

15
New cards

class

An attribute used to assign a CSS class name to an element for styling.

16
New cards

id

An attribute used to assign a unique identifier to an element on a webpage.

17
New cards

style

An attribute used to apply inline CSS directly to an individual HTML element.

18
New cards

Headings (

)


Tags ranging from

(most important) to

(least important) used by search engines and screen readers to structure content; exactly one

should be used per page.


19
New cards


The standard HTML tag used to define a paragraph of text.

20
New cards

The anchor tag used to create hyperlinks, utilizing the href attribute to define the link destination.

21
New cards

An empty HTML tag used to embed images, utilizing src for the file source and alt for alternate text.

22
New cards

An empty HTML element used to insert a line break.

23
New cards

An empty HTML element used to insert a horizontal rule.