Web Development & Design Foundations with HTML5 Review

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/101

flashcard set

Earn XP

Description and Tags

A comprehensive vocabulary review covering basic Internet concepts and HTML5 foundations from Chapters 1 and 2.

Last updated 1:53 PM on 5/14/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

102 Terms

1
New cards

Internet

The interconnected network of computer networks that spans the globe.

2
New cards

World Wide Web

The graphical user interface to information stored on computers running web servers connected to the Internet.

3
New cards

Intranet

A private network contained within an organization or business used to share information and resources among coworkers.

4
New cards

Extranet

A private network that securely shares part of an organization’s information or operations with external partners.

5
New cards

W3C

The World Wide Web Consortium; it develops recommendations and prototype technologies related to the Web.

6
New cards

W3C Recommendations

Specifications produced by the W3C in an effort to standardize web technologies.

7
New cards

WAI

The Web Accessibility Initiative, a W3C initiative focused on making the web accessible.

8
New cards

Accessible Website

A website that provides accommodations for individuals with visual, auditory, physical, and neurological disabilities.

9
New cards

WCAG

Web Content Accessibility Guidelines; specific guidelines developed by the WAI for web accessibility.

10
New cards

Americans with Disabilities Act (ADA)

A law that prohibits discrimination against people with disabilities.

11
New cards

Section 508508 of the Rehabilitation Act

Requires that government agencies give individuals with disabilities access to information technology comparable to what is available to others.

12
New cards

Universal Design

The design of products and environments to be usable by all people, to the greatest extent possible, without the need for adaptation.

13
New cards

Network

Two or more computers connected together for the purpose of communicating and sharing resources.

14
New cards

LAN

Local Area Network; typically confined to a single building or group of buildings.

15
New cards

WAN

Wide Area Network; uses public or commercial communications to connect computers in widely dispersed geographical areas.

16
New cards

Client/Server Model

Describes a relationship between two computer programs: the requester known as the client and the fulfiller known as the server.

17
New cards

Client

In the client/server model, the program that requests some type of service, such as a file or database access.

18
New cards

Server

In the client/server model, the program that fulfills a request and transmits results to the client over a network.

19
New cards

Web Client

A client (usually running browser software like Internet Explorer or Firefox) that connects to the Internet as needed and requests pages via HTTP.

20
New cards

Web Server

A computer continually connected to the Internet that runs software like Apache and responds to HTTP requests for web pages.

21
New cards

Protocols

Rules that describe the methods used for clients and servers to communicate with each other over a network.

22
New cards

FTP

File Transfer Protocol; a set of rules allowing files to be exchanged between computers on the Internet.

23
New cards

SMTP

Simple Mail Transfer Protocol; used specifically for sending e-mail.

24
New cards

POP (POP3)

Post Office Protocol; one of the protocols used for receiving e-mail.

25
New cards

IMAP

Internet Mail Access Protocol; a protocol used for receiving e-mail.

26
New cards

HTTP

Hypertext Transfer Protocol; a set of rules for exchanging multimedia files like text, images, sound, and video on the Web.

27
New cards

TCP/IP

Transmission Control Protocol/Internet Protocol; the official communication protocol of the Internet.

28
New cards

TCP

Transmission Control Protocol; ensures the integrity of communication by breaking files and messages into individual units called packets.

29
New cards

Packets

The individual units into which files and messages are broken by TCP for transmission.

30
New cards

IP

Internet Protocol; a set of rules that controls how data is sent and routes packets to the correct destination address.

31
New cards

Router

A hardware device designed to move network traffic, forwarding packets successively toward their destination.

32
New cards

IP Address

A unique numeric address assigned to each device connected to the Internet.

33
New cards

Octets

The set of 44 groups of numbers that make up a numeric IP address.

34
New cards

Domain Name

A text-based identifier that locates an organization or other entity on the Internet.

35
New cards

Domain Name System (DNS)

A system that divides the Internet into logical groups and associates unique IP addresses with domain names.

36
New cards

URI

Uniform Resource Identifier; identifies a resource on the Internet.

37
New cards

URL

Uniform Resource Locator; a type of URI representing the network location of a resource such as a web page or graphic file.

38
New cards

TLD

Top-Level Domain; identifies the rightmost part of a domain name (e.g., .com, .org, or .gov).

39
New cards

Generic TLDs

Included examples like .com, .org, .net, .mil, .gov, .edu, and .int.

40
New cards

SGML

Standard Generalized Markup Language; a standard for specifying a markup language or tag set.

41
New cards

HTML

Hypertext Markup Language; the set of symbols or codes placed in a file intended for display in a web browser.

42
New cards

XML

eXtensible Markup Language; a text-based language designed to describe, deliver, and exchange structured information by separating data from presentation.

43
New cards

HTML5

The newest version of HTML4 and XHTML that adds new elements, native video and audio, and form data functionality.

44
New cards

HTML Elements

The individual markup codes that make up an HTML document, each serving a specific purpose.

45
New cards

Tags

Characters enclosed in angle brackets (< and >) used to denote the start and end of HTML elements.

46
New cards

Opening tag

The first tag of a pair used to start an HTML element.

47
New cards

Closing tag

The second tag of a pair used to end an HTML element, typically containing a forward slash.

48
New cards

Angle Brackets

The symbols [

49
New cards

DOCTYPE

The document type declaration, such as , which must be the first line in an HTML5 file.

50
New cards

lang attribute

An attribute in the html tag (e.g., lang="en") used to specify the language of the web page.

51
New cards

Head Section

The portion of an HTML document contained between tags that describes the web page document.

52
New cards

Body Section

The portion of an HTML document contained between tags that contains text and elements that display in the browser.

53
New cards
element

Tag used to enclose information describing the document, such as title and meta information.

54
New cards

Tag used within the head section to specify the page title displayed in the browser title bar.

55
New cards
element

Used in the head section to describe document characteristics like character encoding.

56
New cards

charset="utf-88"

A meta element attribute that indicates the document's character encoding.

57
New cards
element

Tag that contains the main text and elements that will display in the web page document.

58
New cards

Heading Elements

A set of tags from

to

used to create headings of various levels, where

is the largest.

59
New cards

Heading Level 11

Coded as

, it is the highest level of heading in an HTML document.

60
New cards

Heading Level 66

Coded as

, it is the lowest level of heading in an HTML document.

61
New cards

Paragraph Element

The

tag used to group sentences and sections of text together.

62
New cards

Block Display

A display property that configures empty space above and below an element, such as paragraphs and headings.

63
New cards

Line Break Element

The
tag used to cause the next element or text to display on a new line.

64
New cards

Void Tag

An HTML tag that stands alone and does not have a separate closing tag, such as
.

65
New cards

Blockquote Element

The

tag used to indent a block of text for special emphasis.

66
New cards

Phrase Elements

Structural elements that indicate the context and meaning of the text they enclose.

67
New cards
element

A phrase element that styles text in bold font by convention with no extra importance.

68
New cards
element

A phrase element that causes text to be emphasized, usually displayed in italics.

69
New cards
element

A phrase element that styles text in italics with no extra importance by convention.

70
New cards
element

An HTML55 phrase element used to highlight text for easy reference.

71
New cards
element

A phrase element used for fine print such as legal disclaimers, displayed in small font-size.

72
New cards
element

A phrase element indicating strong importance, usually causing text to be displayed in bold.

73
New cards
element

A phrase element that displays text as a subscript below the baseline.

74
New cards
element

A phrase element that displays text as a superscript above the baseline.

75
New cards

Proper Nesting

The coding practice where the last tag opened is the first tag closed.

76
New cards

HTML Lists

Structures used to itemize info; include unordered lists, ordered lists, and description lists.

77
New cards

Unordered List

Used to display a bullet or list marker before each entry, using the

    tag.

78
New cards
    element

The tag that contains the entire unordered list.

79
New cards
  • element
  • The tag that contains an individual item within a list structure.

    80
    New cards

    Ordered List

    Used to display a numbering or lettering system to itemize info, using the

      tag.

    81
    New cards
      element

    The tag that contains the entire ordered list.

    82
    New cards

    Type Attribute (Ordered List)

    Determines the numbering scheme (numerals or letters) for an ordered list.

    83
    New cards

    Description List

    A list format used to display terms and their corresponding descriptions, using the

    tag.

    84
    New cards
    element

    The tag that contains the entire description list.

    85
    New cards
    element

    The tag within a description list that contains the term, phrase, or sentence.

    86
    New cards
    element

    The tag within a description list that contains the description or answer for the preceding term.

    87
    New cards

    Special Characters

    Codes such as © used to display unique symbols like quotes or copyright markers.

    88
    New cards

    ©

    The special character code for the copyright symbol.

    89
    New cards

    <

    The special character code for the less-than symbol (<).

    90
    New cards

    >

    The special character code for the greater-than symbol (>).

    91
    New cards

    &

    The special character code for the ampersand symbol (&).

    92
    New cards

     

    The special character code for a non-breaking space.

    93
    New cards
    element

    Configures a structural block area or division on a web page.

    94
    New cards
    element

    A new HTML55 structural element that contains the web page document’s headings.

    95
    New cards

    A new HTML55 structural element that contains the web page document’s main navigation.

    96
    New cards
    element

    A new HTML55 structural element that contains the web page document’s main content.

    97
    New cards
    element

    A new HTML55 structural element that contains the web page document’s footer information.

    99
    New cards

    href Attribute

    The attribute in an anchor tag that indicates the file name or URL to which the link points.

    100
    New cards

    Absolute Hyperlink

    A link that points to a different website, requiring a full URL including http.