Basic HTML 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/26

flashcard set

Earn XP

Description and Tags

Flashcards covering the fundamentals of HTML, including history, basic document structure, tags, attributes, and text formatting styles as presented in the lecture notes.

Last updated 3:36 AM on 8/6/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

27 Terms

1
New cards

HTML

Stands for Hypertext Markup Language; it is a document-layout and hyperlink-specification language used to design web page layouts and specify hyperlinks.

2
New cards

Tim Berners-Lee

A physicist at CERN who devised HTML in the late 80s and early 90s to share documents over the Internet.

3
New cards

CERN

The European Organization for Nuclear Research, where the technology to share documents over the Internet was developed.

4
New cards

Tag

A coded HTML command, enclosed in angle brackets < >\text{< >}, that indicates how a part of a web page should be displayed.

5
New cards

Attribute

A special word used inside a tag to specify additional information such as color, alignment, or value.

6
New cards

Element

One complete individual component of HTML consisting of a start tag, content, and an end tag.

7
New cards

Container Elements

HTML elements that require a pair of tags: a starting tag and an ending tag (e.g., <TITLE>...</TITLE>\text{<TITLE>...</TITLE>}).

8
New cards

Empty Elements

Also called void elements, these require only a starting tag and no ending tag (e.g., <BR>\text{<BR>}, <HR>\text{<HR>}).

9
New cards

<!DOCTYPE html>\text{<!DOCTYPE html>}

The declaration at the top of a document that tells the browser which version of HTML is being used; required for HTML5.

10
New cards

<HEAD>\text{<HEAD>}

A tag containing document information such as its title, scripts, style definitions, and descriptions.

11
New cards

<TITLE>\text{<TITLE>}

A tag used inside the header to specify text that appears on the browser's title bar; ideally it should be 6060 characters or fewer.

12
New cards

<BODY>\text{<BODY>}

The tag that encloses all content to be displayed in the web page, including text, images, lists, and tables.

13
New cards

UTF-8

The default character encoding used for English pages in HTML5, specified through the meta charset attribute.

14
New cards

Hexadecimal RGB

A six-digit number representing colors by the amount of red, green, and blue in the range 0000 to FF\text{FF} (e.g., \text{#FFFFFF} is white).

15
New cards

VLINK\text{VLINK}

An attribute of the <BODY>\text{<BODY>} tag used to specify the color of recently visited links.

16
New cards

ALINK\text{ALINK}

An attribute of the <BODY>\text{<BODY>} tag used to specify the color of an active link while it is being clicked.

17
New cards

Margin

The blank area left from the edge of the page, controlled by attributes like LEFTMARGIN\text{LEFTMARGIN} and TOPMARGIN\text{TOPMARGIN} where 72pixels72\,pixels make an inch.

18
New cards

H1\text{H1} to H6\text{H6}

The six levels of HTML headings, where H1\text{H1} is the largest and H6\text{H6} is the smallest.

19
New cards

<BR>\text{<BR>}

An empty element used to insert a simple line break to jump to the next line.

20
New cards

<P>\text{<P>}

A container tag used to define a paragraph, which ends a line and shows a blank line before beginning the following text.

21
New cards

<BASEFONT>\text{<BASEFONT>}

A tag used to define the basic font size for the document; the default font size value is 33.

22
New cards

<HR>\text{<HR>}

A tool for horizontal rules used to visually separate sections; its default size is 3pixels3\,pixels.

23
New cards

noshade\text{noshade}

An attribute for the <HR>\text{<HR>} tag that creates a flat, 2D horizontal rule instead of the default 3D rule.

24
New cards

Logical Text Styles

Tags like <EM>\text{<EM>} and <STRONG>\text{<STRONG>} that render text according to its meaning or importance.

25
New cards

Physical Text Styles

Tags like <B>\text{<B>}, <I>\text{<I>}, and <U>\text{<U>} that indicate specific formatting regardless of meaning and are rendered similarly by all browsers.

26
New cards

\text{<}

The escape sequence used to display the left angle bracket (<<) in an HTML document.

27
New cards

\text{ }

The special character code used to insert a new blank space in HTML content.