HTML and CSS 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/31

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering HTML tags, form controls, attributes, CSS selectors, and development environment tools based on the lecture notes.

Last updated 12:04 AM on 8/26/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

32 Terms

1
New cards

type attribute

An attribute that changes the numbering style (e.g., numbers, Roman numerals, letters) of an ordered list (

    ).

2
New cards

src attribute

An attribute used in and

3
New cards

The standard HTML5 element used to embed video content on web pages.

4
New cards
tag

An element that defines media resources for

5
New cards

mailto: protocol scheme

A protocol scheme used inside hyperlink href attributes () to create an email link.

6
New cards
tag

An HTML tag that initializes a table element.

7
New cards
tag

An element placed inside a

to add a title or description directly above or below the table.

8
New cards

Standing for Inline Frame, an element used to embed another HTML document, webpage, Google Map, or YouTube video inside the current page.

9
New cards
tag

An HTML tag used to create an interactive web form for user inputs.

10
New cards
tag

An element that creates interactive controls for web forms, including plain text fields.

11
New cards

password input type

A form input type that masks characters with dots or asterisks as they are typed.

12
New cards

Integrated Development Environment (IDE)

Software that provides tools such as a text editor, syntax highlighting, debugger, and terminal to write and manage code efficiently.

13
New cards

Visual Studio Code (VS Code)

A lightweight, widely used IDE for web development (HTML, CSS, JavaScript) featuring built-in syntax highlighting, an extensions ecosystem, and debugging support.

14
New cards

Cascading Style Sheets (CSS)

A language that handles the presentation, layout, fonts, colors, and overall visual design of HTML pages.

15
New cards

Hash symbol (#)

A CSS selector symbol used to target a single element by its unique ID attribute.

16
New cards

Dot or period (.)

A CSS selector symbol used to target multiple elements by their shared Class attribute.

17
New cards
    tag

An HTML tag used to create an unordered (bulleted) list using

  • tags for each list item.
  • 18
    New cards

    rowspan="2"

    A table attribute setting that causes a table cell to stretch across two vertical rows.

    19
    New cards

    An HTML element that improves accessibility for screen readers and expands the clickable area for form controls.

    20
    New cards

    required attribute

    An attribute that prevents form submission if the field is left empty.

    21
    New cards

    Radio buttons

    Form controls that enforce a single selection among a group of mutually exclusive options.

    22
    New cards

    email input type

    A singular HTML form input type (type="email") that automatically validates whether entered text follows a valid email format.

    23
    New cards

    External CSS stylesheets

    Stylesheets that allow developers to reuse styling rules across many HTML files and modify layout, colors, and fonts without touching HTML structure.

    24
    New cards

    ID selectors

    CSS selectors that target a single, unique structural element on a webpage, mandated by HTML standards to be unique within a document.

    25
    New cards

    Class selectors

    CSS selectors used to target repeated components (such as buttons or menu items) that share identical styling properties.

    26
    New cards

    tag

    An HTML tag that produces a single line break in text without adding extra paragraph margin.

    27
    New cards

    Anchor tag ()

    An HTML element used to create hyperlinks, using an href attribute to specify the destination URL or file.

    28
    New cards

    An HTML element that generates a drop-down list for choosing one item from multiple options.

    29
    New cards

    Universal selector (*)

    A CSS selector that applies CSS properties to every single element on the page.

    30
    New cards
    tag

    An HTML element that indicates high importance and semantically emphasizes critical text, typically rendering in bold.

    31
    New cards
      tag

    An HTML tag used to create an ordered list that displays numbered or lettered items sequentially for step-by-step instructions.

    32
    New cards

    tag

    An HTML tag used to structure paragraphs with proper spacing, requiring a closing tag with a forward slash (

    ).