Introduction to the Internet, World Wide Web, and HTML Basics

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

1/119

flashcard set

Earn XP

Description and Tags

A comprehensive set of practice flashcards for students reviewing basic web development concepts, including Internet history, networking protocols, and HTML5 tag fundamentals.

Last updated 6:16 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

120 Terms

1
New cards

The interconnected network of computer networks that spans the globe is called the __________.

Internet

2
New cards

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

World Wide Web

3
New cards

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

Intranet

4
New cards

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

Extranet

5
New cards

The World Wide Web Consortium is abbreviated as __________.

W3C

6
New cards

The W3C produces specifications called __________ in an effort to standardize web technologies.

Recommendations

7
New cards

The group within the W3C that focuses on producing specifications for web accessibility is the __________.

WAI

8
New cards

An __________ Website provides accommodations for individuals with visual, auditory, physical, and neurological disabilities.

Accessible

9
New cards

WCAG stands for __________.

Web Content Accessibility Guidelines

10
New cards

The __________ is a law that prohibits discrimination against people with disabilities.

Americans with Disabilities Act (ADA)

11
New cards

__________ of the Rehabilitation Act requires government agencies to give individuals with disabilities comparable access to information technology.

508508

12
New cards

__________ is the design of products and environments to be usable by all people, to the greatest extent possible, without adaptation.

Universal Design

13
New cards

A __________ consists of two or more computers connected together for the purpose of communicating and sharing resources.

Network

14
New cards

A __________ is usually confined to a single building or group of buildings.

Local Area Network (LAN)

15
New cards

A __________ is usually dispersed over wide geographical areas.

Wide Area Network (WAN)

16
New cards

The __________ model describes a relationship between two computer programs where one requests a service and the other fulfills it.

Client/Server

17
New cards

In the Internet Client/Server model, the Web Browser acts as the __________.

Client

18
New cards

In the Internet Client/Server model, the Web Server acts as the __________.

Server

19
New cards

The web client uses __________ to request web pages from a server.

HTTP (Hypertext Transfer Protocol)

20
New cards

A web browser is connected to the Internet when __________.

needed

21
New cards

A web server is __________ connected to the Internet.

continually

22
New cards

Apache and Internet Information Server are popular types of __________ software.

Web Server

23
New cards

A web server responds to a request by transmitting a status code, the web page, and __________.

associated files

24
New cards

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

Protocols

25
New cards

The __________ is a set of rules that allow files to be exchanged between computers on the Internet.

File Transfer Protocol (FTP)

26
New cards

Web developers commonly use __________ to transfer web page files from their computers to web servers.

FTP

27
New cards

The __________ is used for sending e-mail.

Simple Mail Transfer Protocol (SMTP)

28
New cards

The __________ and IMAP are protocols used for receiving e-mail.

Post Office Protocol (POP3)

29
New cards

The official communication protocol of the Internet is __________.

TCP/IP

30
New cards

The purpose of __________ is to ensure the integrity of communication by breaking files into packets.

TCP

31
New cards

TCP breaks files and messages into individual units called __________.

packets

32
New cards

The __________ is a set of rules that controls how data is sent between computers on the Internet.

Internet Protocol (IP)

33
New cards

A __________ is a hardware device designed to move network traffic.

router

34
New cards

Each device connected to the Internet has a unique numeric __________ address.

IP

35
New cards

An IP address consists of a set of four groups of numbers called __________.

octets

36
New cards

A __________ locates an organization or other entity on the Internet and may correspond to an IP address.

Domain Name

37
New cards

The __________ associates unique computer IP Addresses with text-based domain names.

Domain Name System (DNS)

38
New cards

A __________ identifies a resource on the Internet.

URI

39
New cards

A __________ is a type of URI which represents the network location of a resource.

URL

40
New cards

A __________ identifies the rightmost part of the domain name.

Top-Level Domain (TLD)

41
New cards

The TLD __________ is restricted for use by government agencies.

.gov.gov

42
New cards

A __________ is a standard for specifying a markup language or tag set.

SGML

43
New cards

The set of markup symbols or codes placed in a file intended for display on a web browser is __________.

HTML

44
New cards

XML is a text-based language intended to extend the power of HTML by separating __________ from presentation.

data

45
New cards

The next version of HTML4 and XHTML is __________.

HTML5

46
New cards

Each markup code in HTML represents an HTML __________.

element

47
New cards

Most HTML elements are coded as a pair of tags consisting of an opening tag and a __________ tag.

closing

48
New cards

HTML tags are enclosed in __________ brackets.

angle

49
New cards

HTML5 is intended to be __________ compatible with older versions.

backwards

50
New cards

HTML5 adds functionality to edit __________ data.

form

51
New cards

HTML5 provides __________ support for video and audio.

native

52
New cards

The first line of an HTML5 document should be __________.

<!DOCTYPE html>

53
New cards

The __________ section of an HTML document contains information that describes the document.

Head

54
New cards

The __________ section of an HTML document contains text and elements that display in the browser.

Body

55
New cards

The __________ tag in the head section defines the text shown in the browser's title bar.

<title>

56
New cards

The __________ element is used to specify the character encoding of a web page.

meta

57
New cards

Standard character encoding for web pages is often set to __________.

utf-8\text{utf-8}

58
New cards

There are __________ levels of HTML heading elements.

66

59
New cards

The __________ element groups sentences and sections of text together and creates empty space above and below it.

paragraph

60
New cards

The paragraph element uses the __________ tag.

<p>

61
New cards

A __________ element or 'void tag' causes the next element or text to display on a new line.

Line Break

62
New cards

The tag used for a line break is __________.

<hr>

63
New cards

The __________ element indents a block of text for special emphasis.

blockquote

64
New cards

The __________ tag styles text in a bold font by usage and convention without adding extra importance.

<b>

65
New cards

The __________ tag causes text to be emphasized and usually displays it in italics.

<em>

66
New cards

The __________ tag is used for text that is highlighted to be easily referenced.

<mark>

67
New cards

The __________ tag is used for legal disclaimers and notices, displayed in a small font-size.

<small>

68
New cards

The __________ tag indicates strong importance and usually causes text to be bold.

<strong>

69
New cards

The __________ tag displays a subscript as small text below the baseline.

<sub>

70
New cards

The __________ tag displays a superscript as small text above the baseline.

<sup>

71
New cards

An __________ list displays a bullet or list marker before each entry.

unordered

72
New cards

An __________ list displays a numbering or lettering system to itemize information.

ordered

73
New cards

The __________ tag contains an item in a list.

<li>

74
New cards

The __________ tag contains an unordered list.

<ul>

75
New cards

The __________ tag contains an ordered list.

<ol>

76
New cards

The __________ attribute of the ordered list determines the numbering scheme.

type

77
New cards

A __________ list is useful for terms and descriptions or FAQ and answers.

description

78
New cards

In a description list, the __________ tag contains the term or phrase.

<dt>

79
New cards

In a description list, the __________ tag contains the description of the term.

<dd>

80
New cards

The special character code for the copyright symbol is __________.

&copy;

81
New cards

The special character code for the 'less than' sign (<) is __________.

&lt;

82
New cards

The special character code for the 'greater than' sign (>) is __________.

&gt;

83
New cards

The special character code for an ampersand (&) is __________.

&amp;

84
New cards

The special character code for a non-breaking space is __________.

&nbsp;

85
New cards

The __________ element configures a structural block area or 'division' on a web page.

div

86
New cards

The HTML5 __________ element contains the web page document's headings.

header

87
New cards

The HTML5 __________ element contains the main navigation links.

nav

88
New cards

The HTML5 __________ element contains the web page document’s main content.

main

89
New cards

The HTML5 __________ element contains footer information such as copyright or contact info.

footer

90
New cards

The __________ element is used to specify a hyperlink reference to a file.

anchor

91
New cards

The __________ attribute of the anchor element indicates the file name or URL of the link.

href

92
New cards

An __________ link is a link to a different website.

absolute

93
New cards

A __________ link is a link to pages on your own site.

relative

94
New cards

The __________ scheme is used in the href attribute to create an e-mail hyperlink.

mailto:

95
New cards

Using __________ code leads to more consistent browser display and helps identify syntax errors.

valid

96
New cards

The __________ provides a tool to test a web page document for valid syntax.

W3C

97
New cards

A __________ is a set of rules for exchanging multimedia files on the Web.

HTTP

98
New cards

An IP address corresponds to a __________ that is easier for humans to remember.

domain name

99
New cards

The default numbering scheme for ordered lists is __________.

numerals

100
New cards

The __________ section is where the meta element with the charset is located.

head