with Correct answers
HTML << correct answer >> Hypertext Markup Language, a standardized system for
tagging text files to achieve font, color, graphic, and hyperlink effects on World Wide
Web pages.
HTTP << correct answer >> HypterText Transfer Protocol
World Wide Web Consortium (W3C) << correct answer >> An international community
that develops open standards for the Web. Created in 1993
Web Hyptertext Application Technology Working Group (WHATWG) << correct answer
>> organization that develops a variety of web standards and whose members include
the major browser vendors. 2019
HTML Living Standard << correct answer >> a continually evolving standard without
version numbers that replaces HTML5. Created by WHATWG
1945 << correct answer >> What year did the idea for generating links from within one
document to other documents is described.
1965 << correct answer >> When was the hyperlink invented?
1990 << correct answer >> First web browser is created
1995 << correct answer >> HTML 2.0 standard published
2014 << correct answer >> HTML5 standard published.
Separation of duties << correct answer >> Over time, a move to separate document
structure (HTML), document presentation (CSS), and webpage interaction with the user
(JavaScript).
Root Servers << correct answer >> Thirteen main DNS servers that exist in the world.
Top level domain << correct answer >> .com .org etc
ccTLD << correct answer >> country code .us .uk
Query string << correct answer >> Optional characters to the right of the question mark
(?) in a URL that provide data for the web server.
,Fragment << correct answer >> Optional characters at the end of a URL that with a
hash character (#) and refer to a certain location within a webpage.
404 << correct answer >> The status code that a web server returns to a browser when
a requested webpage is not found.
Linkrot << correct answer >> When content is removed from the web and the URLs that
used to point to the content now return a 404 (not found) status code.
TCP/IP << correct answer >> Transmission Control Protocol / Internet Protocol, a
protocol suite that governs how data packets are transferred over the Internet from one
machine to another.
HTTP Request << correct answer >> A message sent from the web browser to the web
server.
HTTP Response << correct answer >> A message sent from the web server back to the
web browser in response to an HTTP request.
Content-Length << correct answer >> Number of bytes in the HTTP response's
message body.
Content-Type << correct answer >> Media type of the HTTP response's message body
HTTP Server << correct answer >> Identifies the web server software that generated
the HTTP response.
HOST (http request) << correct answer >> The domain name for the HTTP requested
path.
USER-AGENT (http request) << correct answer >> Identifies the browser making the
HTTP request.
IANA << correct answer >> Internet Assigned Numbers Authroity - a standards
organization that manages various internet numbers and symbols, like global IP
address allocation, root zone management, and media types.
ETag << correct answer >> Entity Tag, an identifier for a specific version of a web
resource.
Affordances << correct answer >> Visual clues that guide the user in figuring out how to
use an app.
Separation of Concerns << correct answer >> The design principle of breaking up web
content using distinct languages and documents that overlap as little as possible.
, HTML Element << correct answer >> A single HTML structure that is represented with
HTML tags.
tag << correct answer >> A descriptive name surround by < and > characters that the
web browser uses to display content
CSS - Cascading Style Sheets << correct answer >> A textual language for describing
how a webpage is styled for visual presentation.
CSS Rule << correct answer >> Specifies styling properties for specific HTML elements.
JavaScript << correct answer >> A programming language that runs in a browser,
enabling webpages supporting actions like responding to a button click.
DocType Declaration - <!DOCTYPE html> << correct answer >> instructs the web
browser about what type of document follows
<html>...</html> << correct answer >> This element's opening and closing tags enclose
everything but the Doctype Declaration.
<meta> << correct answer >> Specifies metadata, which is data that describes the
document's data.
<title></title> << correct answer >> name of the HTML document.
body << correct answer >> enclose all elements and content to be rendered in the
browser.
Attribute << correct answer >> Provides additional information about the HTML element
and is included only in the opening element tag.
head << correct answer >> This element's tags contain the document title, document
metadata, and various other elements that are typically not displayed in the webpage.
Void Element << correct answer >> An element that only needs an opening tag.
Chrome DevTools << correct answer >> A collection of web development tools that are
built into the desktop Chrome browser.
HTML validator << correct answer >> Checks that an HTML document conforms to the
standard.
Deprecated << correct answer >> A feature that is part of a language that is officially
discouraged because newer or better features exist, or because the feature is no longer
considered safe.