HTML Basics

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

1/17

flashcard set

Earn XP

Description and Tags

Flashcards covering key vocabulary and concepts related to HTML and its elements.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

18 Terms

1
New cards

HTML

The set of markup symbols or codes placed in a file intended for display on a Web browser page.

2
New cards

HTML5

The newest version of HTML/XHTML that is supported by modern browsers and intended to be backwards compatible.

3
New cards

DOCTYPE

A declaration that defines the document type and version of HTML being used, placed at the top of a web page document.

4
New cards

Blockquote element

Used to indent a block of text for special emphasis, styled as a block display.

5
New cards

Anchor element (A Element)

Specifies a hyperlink reference (href) to a file, with text displayed on the web page.

6
New cards

Hyperlinks

Reference to a text or image that links to another page or location.

7
New cards

Phrase elements

Markup tags like , , , and that alter the appearance or importance of text.
8
New cards

Unordered List

A list that displays items with bullets, using the
    element.
9
New cards

Ordered List

A list that displays items with numbers or letters, using the
    element.
10
New cards

Description List

A list useful for displaying terms and descriptions, using

,
, and
elements.

11
New cards

Div Element

A structural block area or division on a web page, used to contain other elements and structure content.

12
New cards

Structural elements

HTML5 elements like

,

13
New cards

Special Characters

Characters that require a specific code to display properly, like © for © and < for <.

14
New cards

Validation

The process of checking HTML code for syntax errors to ensure it displays consistently across browsers.

15
New cards

Meta element

Contains metadata about the HTML document, such as character set specifications.

16
New cards

Head element

Contains information that describes the web page document, placed within tags.

17
New cards

Body element

Contains text and elements that are displayed in the web page, placed within tags.

18
New cards

Target attribute

An attribute used in the anchor element to specify where to open the linked document, such as in a new tab.