CIS 201 - Fundamentals of Web Design Review

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

1/29

flashcard set

Earn XP

Description and Tags

A set of vocabulary-style flashcards based on the Fundamentals of Web Design lecture, covering internet protocols, security issues, HTML syntax, and CSS levels.

Last updated 3:48 AM on 6/21/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

30 Terms

1
New cards

HTTP

Stands for Hypertext Transfer Protocol; it is the protocol used by the World Wide Web for communication between browsers and servers, consisting of request and response phases.

2
New cards

Web Servers

Programs that provide documents to requesting browsers, acting as slave programs that only respond when a request is made.

3
New cards

Client-Server Model

A configuration where the client initiates communication by requesting information and the server sends that information back to the client.

4
New cards

World Wide Web (the Web)

A system of software and protocols installed on computers on the Internet that allows users to search for and retrieve documents using hypertext.

5
New cards

Hypertext

Text containing embedded links to other documents, allowing for non-sequential or non-linear browsing of material.

6
New cards

Hypermedia

A term used when a web document contains non-textual information such as sound, music, images, animation, or video.

7
New cards

Internet

A huge communications network consisting of a collection of computers and other devices connected together, often described as a network of networks.

8
New cards

Protocol

A standard set of rules that allow electronic devices to communicate with each other.

9
New cards

TCP/IP

Stands for Transmission Control Protocol/Internet Protocol; a low-level protocol that allows diverse devices across the Internet to communicate.

10
New cards

Uniform Resource Locator (URL)

A web address used to identify documents or resources on the Internet, following the general format scheme://object-address.

11
New cards

Top-level Domain (TLD)

The highest level in the hierarchical Domain Name System, identifying the right-most part of a domain name such as .com, .org, or .sa.

12
New cards

IP Address

A numeric address used by computers to uniquely identify nodes on the Internet.

13
New cards

Domain Name System (DNS)

A software system implemented by name servers that converts textual domain names into numeric IP addresses for message transmission.

14
New cards

Privacy

A security property ensuring that data cannot be stolen while it is on its way to its destination.

15
New cards

Integrity

A security property ensuring that data cannot be modified while it is on its way to its destination.

16
New cards

Authentication

The process of ensuring that both the sender and the receiver are certain of each other's identity.

17
New cards

Nonrepudiation

A security measure that provides proof of delivery to the sender and proof of identity to the recipient so neither party can later deny processing the information.

18
New cards

Encryption

A countermeasure for privacy and integrity where data is converted into a different form that cannot be decrypted by unauthorized parties.

19
New cards

Digital Signature

A mathematical technique used to validate the authenticity and integrity of a message, software, or digital document.

20
New cards

Denial-of-service (DoS) attack

An attack created by flooding a web server with requests to overwhelm its ability to operate effectively.

21
New cards

Virus

A harmful program that arrives in a system via attachments; it replicates and can destroy data by overwriting memory.

22
New cards

Worm

A damaging program that spreads on its own across memory rather than being attached to other files.

23
New cards

HTML

Stands for Hypertext Markup Language; a language created by Tim Berners-Lee in 1991 to share research, where content is tagged to tell the browser how to display it.

24
New cards

Element

In HTML, the combination of a container (opening and closing tags) and its content.

25
New cards

Attribute

A component of an HTML tag used to modify the element, appearing between the tag name and the right bracket of the opening tag.

26
New cards

Anchor Tag (<a><a>)

The HTML tag used to specify a link, using the href attribute to point to a web resource.

27
New cards

GET Method

A common HTTP method used to request data from a resource where form data is attached to the URL in a query string and can be cached or bookmarked.

28
New cards

POST Method

A common HTTP method used to send data to a server to create or update a resource, where data is stored in the request body and is never cached.

29
New cards

CSS

Stands for Cascading Style Sheet; used for presentation to overwrite the default styles of HTML structure.

30
New cards

External Level CSS

A level of CSS where style specifications are stored separately from HTML documents and referenced using the <link><link> tag, allowing styles to be applied to multiple pages.