1/26
Flashcards covering the fundamentals of HTML, including history, basic document structure, tags, attributes, and text formatting styles as presented in the lecture notes.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
HTML
Stands for Hypertext Markup Language; it is a document-layout and hyperlink-specification language used to design web page layouts and specify hyperlinks.
Tim Berners-Lee
A physicist at CERN who devised HTML in the late 80s and early 90s to share documents over the Internet.
CERN
The European Organization for Nuclear Research, where the technology to share documents over the Internet was developed.
Tag
A coded HTML command, enclosed in angle brackets < >, that indicates how a part of a web page should be displayed.
Attribute
A special word used inside a tag to specify additional information such as color, alignment, or value.
Element
One complete individual component of HTML consisting of a start tag, content, and an end tag.
Container Elements
HTML elements that require a pair of tags: a starting tag and an ending tag (e.g., <TITLE>...</TITLE>).
Empty Elements
Also called void elements, these require only a starting tag and no ending tag (e.g., <BR>, <HR>).
<!DOCTYPE html>
The declaration at the top of a document that tells the browser which version of HTML is being used; required for HTML5.
<HEAD>
A tag containing document information such as its title, scripts, style definitions, and descriptions.
<TITLE>
A tag used inside the header to specify text that appears on the browser's title bar; ideally it should be 60 characters or fewer.
<BODY>
The tag that encloses all content to be displayed in the web page, including text, images, lists, and tables.
UTF-8
The default character encoding used for English pages in HTML5, specified through the meta charset attribute.
Hexadecimal RGB
A six-digit number representing colors by the amount of red, green, and blue in the range 00 to FF (e.g., \text{#FFFFFF} is white).
VLINK
An attribute of the <BODY> tag used to specify the color of recently visited links.
ALINK
An attribute of the <BODY> tag used to specify the color of an active link while it is being clicked.
Margin
The blank area left from the edge of the page, controlled by attributes like LEFTMARGIN and TOPMARGIN where 72pixels make an inch.
H1 to H6
The six levels of HTML headings, where H1 is the largest and H6 is the smallest.
<BR>
An empty element used to insert a simple line break to jump to the next line.
<P>
A container tag used to define a paragraph, which ends a line and shows a blank line before beginning the following text.
<BASEFONT>
A tag used to define the basic font size for the document; the default font size value is 3.
<HR>
A tool for horizontal rules used to visually separate sections; its default size is 3pixels.
noshade
An attribute for the <HR> tag that creates a flat, 2D horizontal rule instead of the default 3D rule.
Logical Text Styles
Tags like <EM> and <STRONG> that render text according to its meaning or importance.
Physical Text Styles
Tags like <B>, <I>, and <U> that indicate specific formatting regardless of meaning and are rendered similarly by all browsers.
\text{<}
The escape sequence used to display the left angle bracket (<) in an HTML document.
\text{ }
The special character code used to insert a new blank space in HTML content.