try

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

1/78

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 11:26 AM on 2/18/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

79 Terms

1
New cards

HTML

HyperText Markup Language; the standard markup language used to create web pages and define how content is displayed.

2
New cards

HyperText

Refers to links that allow users to move from one document to another on the Web.

3
New cards

HTML5

The fifth and latest version of HTML that supports multimedia new tags elements and APIs.

4
New cards

W3C

World Wide Web Consortium; the organization that manages HTML specifications.

5
New cards

HTML Document

A text file containing content elements attributes and tags such as

6
New cards

.html Extension

The required file extension used to save an HTML document so browsers can read it properly.

7
New cards

HTML Element

A component of an HTML document that includes a start tag content and an end tag.

8
New cards

HTML Attribute

A name=value pair placed inside an opening tag to modify or define an HTML element.

9
New cards

HTML Tag

Keywords enclosed in angle brackets that tell browsers how to format and display content.

10
New cards

Paragraph Tag (

)

The basic unit of text in an HTML document.

11
New cards

Line Break Tag (
)

An HTML element used to insert a line break; it has no end tag.

12
New cards

Heading Tags (

-

)

Tags used to define titles or subtitles with

being the highest level and

the lowest.

13
New cards

Link Tag ()

Used to create hyperlinks that connect one webpage to another using the href attribute.

14
New cards

Absolute URL

A link that directs to another website using a full web address.

15
New cards

Relative URL

A link that directs to a file within the same website.

16
New cards

Form

An HTML element used to collect user input and interact with a server.

17
New cards

HTML Table

A structure used to organize data into rows and columns using the

tag.

18
New cards

Table Header ()

Defines the header cell in a table usually appearing in the top row.

19
New cards

Table Row ()

Indicates a row in an HTML table.

20
New cards

Table Data ()

Holds the actual data within a table cell.

21
New cards

Colspan

An attribute used to merge two or more columns in a table.

22
New cards

Rowspan

An attribute used to merge two or more rows in a table.

23
New cards

Groups the header content of an HTML table.

24
New cards

Groups the body content of an HTML table.

25
New cards

Groups the footer content of an HTML table.

26
New cards

HTML Structure

The proper arrangement of HTML elements that gives an HTML document organized syntax.

27
New cards

Declares the document type and tells the browser how to interpret the HTML file.

28
New cards

The root element that contains all other HTML elements except .

29
New cards

Contains metadata such as title links scripts and meta information.

30
New cards

Displays the title of the webpage shown in the browser tab.

31
New cards

Provides metadata such as character set author and page description.

32
New cards

Contains the visible content of the HTML document displayed in the browser.

33
New cards

Connects the HTML document to external resources like CSS files.

34
New cards

Embeds or links client-side scripts such as JavaScript.

35
New cards

Image

An HTML element used to embed images or animated images on a webpage using the tag.

36
New cards
Tag

An HTML tag used to display images; it has no closing tag and uses src and alt attributes.

37
New cards

src Attribute

Specifies the path or URL of the image file.

38
New cards

alt Attribute

Provides alternate text for an image if it cannot be displayed.

39
New cards

width Attribute

Sets the width of an image in pixels.

40
New cards

height Attribute

Sets the height of an image in pixels.

41
New cards

style Attribute

Used to define CSS styling such as width and height directly in the tag.

42
New cards

Absolute Image URL

A full URL used when the image is hosted on another server or website.

43
New cards

Relative Image URL

A file path used when the image is stored within the same website or folder.

44
New cards

List

An HTML feature used to group related items together.

45
New cards

Unordered List

A list that uses bullet points and starts with the

    tag.

46
New cards

Ordered List

A list that uses numbers and starts with the

    tag.

47
New cards

List Item (

  • )
  • An element used inside ordered and unordered lists to define each item.

    48
    New cards

    Description List

    A list that displays terms and their descriptions using

    and
    tags.

    49
    New cards
    Tag

    Defines a description list.

    50
    New cards
    Tag

    Defines a term in a description list.

    51
    New cards
    Tag

    Describes a term in a description list.

    52
    New cards

    Span

    An inline element used to style or mark a part of a text using the tag.

    53
    New cards

    Navigation

    A section of a webpage that contains major navigation links.

    54
    New cards

    Defines a block of navigation links in an HTML document.

    55
    New cards

    ID Attribute

    A unique identifier assigned to an HTML element.

    56
    New cards

    Forms

    HTML elements used to collect user input and interact with a server.

    57
    New cards

    Input

    An HTML element used to gather user input using the tag.

    58
    New cards

    Label

    An element used to define labels for form inputs using the

    59
    New cards

    for Attribute

    Connects a

    60
    New cards

    Text Field

    A single-line input field created using .

    61
    New cards

    Radio Button

    An input type that allows users to select only one option from a group.

    62
    New cards

    Checkbo

    xAn input type that allows users to select multiple options.

    63
    New cards

    Date Input

    An input type used to select a date in mm-dd-yyyy format.

    64
    New cards

    Time Input

    An input type used to select time in hh:mm format.

    65
    New cards

    Month Input

    An input type used to select a month in yyyy-mm format.

    66
    New cards

    Week Input

    An input type used to select a week in Week#-yyyy format.

    67
    New cards

    Button

    An HTML element used to perform actions such as submit or reset.

    68
    New cards

    Reset Button

    A button that clears all user input in a form.

    69
    New cards

    Submit Button

    A button that sends form data to a server for processing.

    70
    New cards

    Form Action

    An attribute that specifies where the submitted form data will be sent.

    71
    New cards

    Multimedia

    HTML features that allow audio and video content to be embedded in webpages.

    72
    New cards

    Audio

    An HTML element that embeds sound using the

    73
    New cards

    An element that plays audio files and supports controls like play and pause.

    74
    New cards

    Video

    An HTML element used to embed video content using the

    75
    New cards

    An element that plays video files and supports controls and poster thumbnails.

    76
    New cards

    poster Attribute

    Displays an image before a video starts playing.

    77
    New cards

    Canvas

    An HTML element used to draw graphics using JavaScript.

    78
    New cards
    Tag

    A container for graphics such as shapes text and images that requires JavaScript.

    79
    New cards