The ROOT element that specifies that the content of the document is HTML.
Back
Empty HTML Elements
Front
HTML elements with no content and do not have a closing tag.
Back
HTML IMG tag
Front
Defines an image in an HTML page.
Requires attributes src and alt.
Links image to HTML page
Creates a holding space for the referenced image
Back
Padding
Front
Clears an area around the content. Is affected by the background color of the box.
Back
Cascading Order
Front
When there is more than one style specified for an HTML element, the styles will cascade into a new "virtual" style sheet by:
Browser default
External style sheet
Internal style sheet (in the head section)
Inline style (inside an HTML element) HIGHEST PRIORITY
Back
href
Front
This attribute specifies the destination of a link.
Back
CSS Selector
Front
Is normally the HTML element you want to style.
Back
CSS Box Model Visual
Front
Back
TCP
Front
Transmission Control Protocol, the basic communication protocol of the internet.
Back
ID Selector
Front
# uses ID attribute of HTML element.
The id selector is used to specify a style for a single, unique element.
Back
Content
Front
The content of the box, where text and images appear.
Back
CSS Property
Front
This is the style attribute you want to change. Each of these has a value.
Back
IP
Front
Internet Protocol, the basic communication language of the internet.
Back
Border.
Front
Goes around the padding and content. It is affected by the background color of the box.
A CSS rule has a SELECTOR and one or more DECLARATIONS.
Back
Cascading Style Sheets
Front
Define how to display HTML elements.
Were added to HTML to 4.0 to solve a problem.
Back
<img>
Front
Empty HTML tag that defines an image reference.
Back
CSS Internal Stylesheet Syntax
Front
<head>
<style type="text/css">
/ This is a CSS Comment /
hr {color:sienna;}
p {margin-left:20px;}
body {background-image:url("images/back40.gif");} </style>
</head>
Ideal when the style is applied to many pages. You can change the look of an entire Web site by changing one file. Each page must link to the style sheet using the <link> tag, which goes inside the <head> section.
Back
Margin
Front
Clears an area around the border. It does not have a background color, it is completely transparent.
Back
<TITLE>
Front
Defined the title of the page
Back
HTML Elements
Front
Are written with a start tag and end tag, with content in between. The element is everything from the start tag to the end tag.
<h1> content </h1>
Back
CSS Internal Stylesheet
Front
Should be used when a single document has a unique style. You define this style in the head section of an HTML page, by using the <style> tag, like this.
Back
<HEAD>
Front
The HEADER of an HTML document where information about the document is placed.
Back
<BODY>
Front
The main body of an HTML document where all the content is placed. This element MUST be used and only ONCE.
Links are specified in HTML using the <a> tag, and can be used in two ways.
-To create a link to another document, by using the HREF attribute
-To create a bookmark inside a document, by using the NAME ATTRIBUTE.
Back
HTML links
Front
Links are specified in HTML using the <a> tag.
Back
URL
Front
Uniform Resource Locator
Back
HTML (Hypertext Markup Language)
Front
Written in the form of HTML ELEMENTS consisting of tag surrounded by angle brackets within the web page.
HTML Element: <tag>content</tag>
Is a mark-up language that uses mark-up tags to describe web pages.
It is NOT a programming language
Back
Hyperlink
Front
A word, group of words, or image that you can click on to jump to a new document or a new section within the current document.
Back
Tag Selector
Front
This selector is an HTML element you want to style.
Back
Universal Selector
Front
* to define selector
This selector is used to define a rule for all elements.
Back
HTTP
Front
Hypertext Transfer Protocol
Back
markup language
Front
Is a set of markup tags
Back
HTML Nested Elements
Front
HTML elements that contain other elements.
<header>
<h1> content </h1>
</header>
Back
<br>
Front
Empty HTML tag that defines a line break
Back
Hyperlinks
Front
A reference to data that the reader can directly follow or that is followed automatically.
-Points to a whole document
-Point to a specific element within that document
Back
HTML
Front
Hypertext Mark-up Language.
Language for describing websites.
Back
HTML IMG Syntax
Front
<img src="smiley.gif" alt="Smiley face">
Back
HTMl Link Syntax
Front
a href="url">Link text</a>
Back
Class Selector
Front
. uses HTML Class attribute.
Is used to specify a style for a group of elements.
Used on several elements.
Sets a particular style for many HTML elements with the same class.
Back
Inline Element
Front
These elements are normally displayed without line breaks.
Back
Block Level Element
Front
These elements normally start (and end) with a new line, when displayed in a browser.
Back
Section 2
(15 cards)
font-size
Front
Specifies the FONT SIZE of the TEXT
Back
font-family
Front
Specifies the FONT FAMILY for the TEXT.
Back
background-position
Front
Sets the STARTING position of a background image.
Back
text-transform
Front
capitalize, lowercase, uppercase
Back
Color
Front
The color property is used to set the color of the TEXT.
Back
background
Front
Sets all the background properties in one DECLARATION.