Introduction to HTML – Core Vocabulary

0.0(0)
studied byStudied by 2 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/49

flashcard set

Earn XP

Description and Tags

Fifty key vocabulary flashcards covering fundamental HTML tags, attributes, and styling concepts from the lecture notes.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

50 Terms

1
New cards

HTML

The standard language used to create and structure web pages.

2
New cards

HyperText Markup Language

The full name behind the acronym HTML, emphasizing that it is a markup—not programming—language.

3
New cards

Markup Tag

A code snippet enclosed in angle brackets (e.g.,

) that describes how content should appear in HTML.

4
New cards

HTML Element

A complete unit in HTML made up of a start tag, content, and an end tag.

5
New cards

Start Tag

The opening portion of an element (e.g.,

) that tells the browser where the element begins.

6
New cards

End Tag

The closing portion of an element (e.g., ) that signals where the element ends.

7
New cards

Nested Elements

HTML elements placed inside other elements, forming the document’s tree-like structure.

8
New cards
Declaration

A required statement at the top of an HTML document that identifies the document type (HTML5 uses ).

9
New cards

HTML Headings

Six hierarchical heading tags (

) that indicate content importance, with

being most significant.

10
New cards

Paragraph Tag (

)

Defines a block-level paragraph of text in HTML.

11
New cards
Tag

Displays enclosed text in bold without implying extra importance.

12
New cards
Tag

Applies bold styling while indicating strong emphasis or importance.

13
New cards
Tag

Renders text in italics to show alternate voice, technical terms, or foreign phrases.

14
New cards
Tag

Italicizes text and conveys verbal stress; screen readers emphasize its content.

15
New cards
Tag

Highlights text with a yellow background to draw attention.

16
New cards
Tag

Displays text in a smaller font size than surrounding content.

17
New cards
Tag

Underlines enclosed text for emphasis or stylistic effect.

18
New cards
Tag

Shows deleted text by striking a line through its content.

19
New cards
Tag

Marks inserted text, usually displayed with an underline.

20
New cards
Tag

Formats text as subscript, positioning it slightly below the baseline.

21
New cards
Tag

Formats text as superscript, positioning it slightly above the baseline.

22
New cards
Tag

Defines long, block-level quotations typically indented by browsers.

23
New cards
Tag

Wraps short, inline quotations and automatically adds quotation marks.

24
New cards
Tag

Marks abbreviations or acronyms and can reveal full forms via the title attribute.

25
New cards

title Attribute (Global)

Provides additional information, often used to display tooltips (e.g., inside ).

26
New cards
Tag

Represents contact information for the document’s author or owner, usually rendered in italics.

27
New cards
Tag

Indicates the title of a creative work and is typically italicized.

28
New cards
Tag

Applies bidirectional text override, letting you force text direction (e.g., dir="rtl").

29
New cards

HTML Comment

Non-rendered notes in code written between for documentation or temporary hiding of content.

30
New cards

style Attribute

Inline CSS applied directly to an element via property–value pairs (e.g., style="color:red;").

31
New cards

background-color Property

CSS property that sets an element’s background color.

32
New cards

color Property

CSS property that defines the color of text within an element.

33
New cards

font-family Property

Specifies the typeface to display for selected HTML content.

34
New cards

font-size Property

Controls the size of text in HTML elements.

35
New cards

text-align Property

Sets horizontal alignment (left, right, center, justify) of text content.

36
New cards

border Property

Defines the style, width, and color of an element’s border.

37
New cards

RGB Color Value

Color definition using Red, Green, and Blue components: rgb(red, green, blue).

38
New cards

HEX Color Value

Six-digit hexadecimal notation (#RRGGBB) for specifying RGB colors.

39
New cards

RGBA Color Value

RGB color extended with an Alpha channel for opacity: rgba(r, g, b, a).

40
New cards

HSLA Color Value

HSL color extended with an Alpha channel: hsla(hue, saturation, lightness, alpha).

41
New cards

Sets the page title shown in browser tabs and used by search engines for ranking.

42
New cards

Favicon

A small icon displayed next to the page title in the browser tab or bookmarks.

43
New cards

href Attribute

Specifies the destination URL of an (anchor) hyperlink.

44
New cards

src Attribute

Provides the file path or URL for embedded resources like images, audio, or video.

45
New cards

alt Attribute

Supplies alternative text for an image, improving accessibility and SEO.

46
New cards

target Attribute

Determines where to open linked content (_self, _blank, _parent, or _top).

47
New cards

Absolute URL

A full web address including protocol and domain (e.g., https://example.com/page).

48
New cards

Relative URL

A link path relative to the current page’s location, omitting the protocol and domain.

49
New cards

Block-level Element

HTML element that starts on a new line and stretches to full available width (e.g.,

,

).

50
New cards

Inline Element

HTML element that stays within the current line and only takes necessary width (e.g., , ).