An element that encloses (or wraps) another element.
Back
dedicated hosting
Front
Your very own server. You share nothing and have root access so you can install anything. Most expensive type of hosting, but most flexible.
Back
virtual web host
Front
Server runs in a virtual environment. Guaranteed amount of processing power, memory, and hard drive space only to be used for you. Can have root access, but still will be sharing memory, hard drives, and other resources. If one server crashes, does not impact the others. Allows for more custom software than shared.
Back
ID selector
Front
Way to target elements in HTML using CSS. This creates a named way to apply styles to a unique item in each document. CSS rules are written as #idName and applied to HTML using id="idName". ID names are case sensitive.
Back
HEX
Front
Way of identifying colors using a 3 or 6 digit hexadecimal code. The first two digits represent the red values, the second two digits represent the green values, and the last two digits represent the blue values. Example: #0000FF would be blue, #00FF00 would be green, #FF0000 would be red.
Back
a:active
Front
Pseudo element that selects the active link. This rule must come after a:hover
Back
requests
Front
Clients request information from a website and servers receive those requests and issue responses by "serving" up the requested information.
Back
top-level domains
Front
One of the domains at the highest level in the hierarchical Domain Name System of the internet. Examples: .com = company; .edu = educational organizations; .org = an organization, typically non-profit; .net = open to anyone; .gov = governmental; .mil = US Military
Back
tag selector
Front
Way to target elements in HTML using CSS. This will select elements based on existing HTML tags and will target all elements within a document. Example: p, h1, nav, footer. P would target all paragraph tags in the entire document.
Back
/ comment /
Front
Correct way to create comments in CSS
Back
float
Front
When added as an attribute to an image it converts the image from an inline element to a block element. Items can be floated left(float:left) or right(float:right). If images are floated left or right the text will wrap around the image.
Back
CSS
Front
Stands for Cascading Style Sheets. Used to add presentation styling to HTML documents.
Back
camelCase
Front
A type of capitalization where the first letter is lower case and each succeeding word has a capital letter
Back
CSS Syntax
Front
A CSS rule consists of a selector (tag, ID, class, or descendent) followed by a block of declarations. Example: .className{color:blue; font-weight:bold;}
Back
Descendent selector
Front
Way to target elements in HTML using CSS. This will select elements that are children of a specific parent element. Example: p a{} would target all links that are within a paragraph tag.
Back
absolute reference
Front
The location of the item is coded as if we were typing the full address into a browser URL bar. For example, http://www.wgu.edu/online_it_degrees/bachelor_degree_programs. Use this type of reference when linking to a site outside of your site. This will only work when you have an internet connection.
Back
class selector
Front
Way to target elements in HTML using CSS. This creates a named way to apply styles to multiple times in one document to multiple items. CSS rules are written as .className and applied to HTML using class="className". Class names are case sensitive.
Back
shared web host
Front
Server runs your site in the same place as many other sites. Must share resources, processing power, memory, and hard drive space with other users. Economical, but if one site has problems, it can affect others. Less secure, less power, and less customization. Fewer rights to install your own software.
Back
<span>
Front
Inline HTML element used to apply CSS to a specific section of text in a document
Back
cloud web host
Front
Server runs solely on a cloud or network of computers. If one fails, another takes over your site so is more efficient than the previous two. Pay for what you use.
Back
px
Front
A unit of measure used in CSS to define a pixel value. Is useful for creating dimensions that are more absolute in size.
Back
padding
Front
Adds space inside an element. For example, if you have a <div> with a blue background and add 10px padding it will add 10px to each side of the box, that will extend the size of the blue background. Padding can be specified in four directions rotating clockwise. Example: margin:10px 5px 10px 5px; (top, right, bottom, left values)
Back
inline styles
Front
This is a way of applying CSS to one specific HTML tag through the style attribute. This is applied last and always takes precedence over internal and external style sheets. Example: <p style="color:blue;"></p>
Back
z-index
Front
Defines which elements will appear above other elements if they happen to overlap. Higher number z-index appear in front of lower number z-index. Example z-index:100; will appear on top of z-index:50;
Back
protocols
Front
Handle the communication between the client and the server, such as HTTP, HTTPS, or FTP
Back
child element
Front
An element that is enclosed (or wrapped) within another element. The child element inherits CSS properties from the parent element.
Back
root relative reference
Front
Looks exactly like the absolute reference except it doesn't include the domain name . Example: /online_it_degrees/bachelor_degree_programs. Note how it starts with a / . Starts in the web root folder for whatever the website is and moves to the designated folders to look for the files from there. This type of reference is good to use when the folder structure on your site is complicated because you don't need to write the code to look a level up or to worry about many cumbersome folders.
Back
fixed positioning
Front
Elements will remain in a specific spot no matter how the browser is manipulated and do not appear in the flow of the document.
Back
web server
Front
hold the files, videos, etc. that will be seen on the internet. Provide the information to users, while allowing you to have the ultimate control over how your information is presented and used.
Back
a:visited
Front
Pseudo element that styles links after they have been visited
Back
<div>
Front
Block-level HTML element used to apply CSS to a group of elements in a document
Back
relative positioning
Front
Positions something on the screen in a different place than where it actually belongs in the document flow, but lays out the rest of the document as if that object were right where it belong and hadn't been positioned.
Back
clear
Front
Stops elements from floating around other elements. You can clear the float for left (clear:left), right (clear:right), or for both (clear:both).
Back
client
Front
computers that can connect to the internet for short periods of times, such as to check email, update Facebook, or shop at Amazon.
Back
pt
Front
A unit of measure used in CSS to define a point value. Default font size on most browsers is 12 pt.
Back
domain name
Front
A unique name for a website that must be registered. Example: Microsoft.com
Back
internal style sheet
Front
This is a way of applying CSS to one specific document by using the <style></style> tags in the <head> of the HTML document. This is typically the second set of styles that are applied after the external style sheet and can be overridden by inline styling
Back
%
Front
A unit of measure used in CSS to define relative percentages
Back
absolute positioning
Front
Absolute position uses exact values to position elements on the screen. Requires the use of a containing block. Typically this containing block is a <div> that has relative positioning applied to it. When it is done in this manner the absolute values are in relation to the containing block. For example, if you move the item left:50px; it will move 50px from the left side of the containing block. If you don't use a containing block it will use the browser window to apply the absolute values to.
Back
FTP
Front
Stands for File Transfer Protocol. Is used to send files to a server.
Back
a:hover
Front
Pseudo element that styles links while the mouse is over the link. This rule must come after a:link and a:visited
Back
external style sheet
Front
A separate document that contains CSS styles and is linked to from an HTML file. Correct way to create the link is <link rel="style sheet" type="text/css" href="external.css" />. This is typically the first set of styles that are applied to a webpage and can be overridden by internal or inline styling.
Back
server
Front
computers that are always connected to the internet. Servers hold the information seen on webpages and they "serve" up that information through different types of software.
Back
pseudo elements
Front
Applies to a specific state of an element, for example :hover applies only when the mouse is over an element.
Back
margin
Front
Adds space outside of an element. For example, if you have a <div> with a blue background and add 10px margin it will add 10px to each side of the box, but will not extend the size of the blue background that is within the box. Margin can be specified in four directions rotating clockwise. Example: margin:10px 5px 10px 5px; (top, right, bottom, left values)
Back
sub domain
Front
The section of a web address that goes before the domain name. Example: Support.Microsoft.com. Used for quicker access to a specific place in a website.
Back
relative reference
Front
Location of the item is coded in relation to the current page. So if there the main webpage is in the root directory and there is a picture in an images folder in that same directory, we could code it to say to use the file at the location "images/filename.jpg". This type of reference can be cumbersome if you have a lot of folders. Sometimes it may be necessary to write the code to look for a file a level up from the current document, which would look like "../images/filename.jpg". Use this type of linking if you know the structure of your site will remain constant.
Back
Declaration
Front
What a CSS attribute and value are called. Formatted with the attribute name followed by a colon, then the value and a semicolon. Example: color:blue;
Back
a:link
Front
Pseudo element that styles links that have not yet been visited
Back
em
Front
A unit of measure used in CSS to define the current font size. If the font size is 12pt, 1em = 12pt.
Back
Section 2
(50 cards)
<aside></aside>
Front
Semantic element that contains content tangentially related to the content around it
Back
<article></article>
Front
Semantic element that contains a self-contained composition, like a blog posting or newspaper article
Back
<section></section>
Front
Semantic element that contains a generic sectioning of content
Back
<li></li>
Front
Inline level container for list items. Can be used in both the ordered and unordered lists.
Back
<br />
Front
Tag used to create a line break
Back
Standalone Tags
Front
HTML elements that do not contain content. Are writing with a closing /, ex. <br />
Back
absolute link
Front
Specifies a link's absolute position. Example: http://www.google.com
Back
<strong></strong>
Front
Inline tag that gives the marked section of content strong value. Can visually be controlled with CSS.
Back
metadata
Front
Data about data. This information is included in the <head> section and does not display on the webpage. <meta charset="" /> would define the character set used by the page. Other ways to use metadata include setting a description and keywords for a search engine.
Back
HTML Tags
Front
The basic elements of HTML. Opening tags contain < and the name of the tag and the >. Closing tags contain </ and the name of the tag and the >.
Back
MySQL
Front
A database that can be used to run websites with. Usually set up through a control panel tool on the web host and most provide a PHP MySQL application to help you create tables or modify records
Back
<p></p>
Front
Block level tag for identifying paragraphs of text. By default paragraphs have space before and after them.
Back
SGML
Front
Standard Generalized Markup Language. This is the original language that HTML is based upon.
Back
path
Front
Portion of the URL that indicates where the specific object is located. This typically shows after the host.
Back
<html></html>
Front
Tags that indicate the document will contain HTML content.
Back
<ul></ul>
Front
Block level container for an unordered list
Back
<!-- comment -->
Front
Creates a comment in HTML
Back
semantic elements
Front
Block level elements designed to create structure that makes it clear what parts of the page serve what purpose. Example: <nav>, <article>, <aside>
Back
clear
Front
Stops elements from floating around other elements. You can clear the float for left (clear:left), right (clear:right), or for both (clear:both).
Back
<title></title>
Front
Defines the title for a webpage. Required in HTML even if it is empty.
Back
<span></span>
Front
Generic inline level element used to apply styling with CSS.
Back
<sup></sup>
Front
Inline tag that sets text in superscript.
Back
<!DOCTYPE html>
Front
The declaration that tells the browser what version of HTML to use. This needs to be the first thing in the document.
Back
<th></th>
Front
Defines table headers within a <table> element
Back
<h1></h1>
Front
One of 6 block level headings. H1 is the largest by default and H6 is the smallest, but they can all be styled differently using CSS. Heading levels help your page get properly indexed.
Back
float
Front
When added as an attribute to an image it converts the image from an inline element to a block element. Items can be floated left(float:left), right(float:right), or center(float:center). If images are floated left or right the text will wrap around the image.
Back
Password Protection
Front
Can help you provide specific information to only specific individuals while others cannot access it. Can be used to set a basic security level for any folder on your website.
Back
<body></body>
Front
Container for the main content of the page. Displays all of the visible content on the webpage.
Back
Front
Entity used to create an extra inline space
Back
<td></td>
Front
Defines table data cells within a <table> element
Back
<div></div>
Front
Generic block level element used to group items for purposes of styling with CSS.
Back
<i></i>
Front
Inline tag that sets text in italics.
Back
attributes
Front
Information added to HTML tags to provide important information the tag needs to help it work correctly.
Back
image map
Front
Image mapping defines regions of a single image to link to different URLs. Image map areas can be rectangle, circles, or polygon and require the coordinates be defined for the area.
Back
<header></header>
Front
Semantic element that contains introductory or navigational aids
Back
<nav></nav>
Front
Semantic element that contains links to other pages or resources
Back
relative link
Front
Specifies a link's location in relation to the current document. ../ will bring you up a level from the current directory.
Back
Whitespace
Front
Characters that you do not see on a page such as spaces, tabs, and new lines. Sequential whitespace is condensed into one space.
Back
fragment links
Front
Linking to a specific place within the current document. Uses ID attribute defined in elements to create a place to link to. Example: <a href="#idName"></a>
Back
scheme
Front
Portion of the URL that indicates the protocol in use (HTTP or HTTPS)
Back
<head></head>
Front
This contains information that applies to the entire document. Other tags within may include <title>, <meta>, and <link>
Back
<sub></sub>
Front
Inline tag that sets text in subscript.
Back
FTP Client
Front
An application, such as FileZillia, used to transfer files from a local computer to the web server.
Back
<em></em>
Front
Inline tag that gives the marked section of content emphasis. Can visually be controlled with CSS.
Back
<ol></ol>
Front
Block level container for ordered list. TYPE="" attribute applies the style of ordered list. a - lowercase letters, A = uppercase letters, 1 = numerals, i = lowercase roman numerals, I = uppercase roman numerals. START="" attribute determines on what number the ordered list begins.
Back
HTML
Front
Hypertext Markup Language
Back
<b></b>
Front
Inline tag that sets text in bold.
Back
<img />
Front
Inline element used to add images to a webpage. SRC="" attribute defines where the image is located. ALT="" attribute defines alternative text for when the image cannot be displayed visually. TITLE="" attribute defines text that is displayed in a tooltip when you hover over the image.
Back
<dl></dl>
Front
Block level container for a definition list
Back
host
Front
Portion of the URL that indicates the host name or IP address (www.google.com)
Back
Section 3
(50 cards)
<a></a>
Front
Stands for anchor and creates a link. The HREF="" attribute defines where the link should resolve to. The TARGET="" attribute defines where the link should open. To open in a new window or new tab you set target="_blank".
Back
An External Style Sheet uses the ________ file extension.
Front
css
Back
Which of the following attributes would configure an ordered list to display uppercase letters?
Front
type="A"
Back
Which CSS property configures the color of text?
Front
color
Back
<dt></dt>
Front
Definition term used in definition list.
Back
Which tag is used to force the browser to display the next text or element on a new line?
Front
<br>
Back
<iframe></iframe>
Front
Includes a separate document within another document. This method is preferred to the depreciated method of using the <frame> tag. The src attribute defines the location of the external document that is loaded into the <iframe>
Back
Choose the special character that is used to indicate a blank space.
Choose the special character that is used to indicate a blank space.
Front
Back
What tag pair contains the items in an ordered or unordered list?
Front
<li> </li>
Back
Choose the preferred tag pair to use when emphasizing text.
Front
<strong></strong>
Back
<blockquote></blockquote>
Front
Block level way to quote a passage of text.
Back
What type of HTML list will automatically place a bullet point indicator in front of each item?
Front
unordered list
Back
<textarea></textarea>
Front
Form element that produces a multi-line text box
Back
is this correct? <a href="news.htm">Important News</a>
Front
YES
Back
what is function of an email link?
Front
launch the default e-mail application for the visitor's browser with your e-mail address as the recipient
Back
Choose the preferred tag pair to use when displaying important text in bold font.
Front
<strong></strong>
Back
Which of the following tags does not require a closing tag?
Front
<i>
Back
method=""
Front
Form attribute that defines how the data is submitted. Method="post" submits variables to the server, but they are not visible on the front end. Method="get" submits variables in the URL where they are visible. This method allows user to bookmark position/result for a form.
Back
Collapsed borders
Front
Border value that can be assigned through the CSS border-collapse attribute. Allows adjoining cells to share a border.
Back
value=""
Front
Form input attribute that specifies a default value that is entered in the field
Back
True or False? Web pages have two sections: a head and a body.
Front
TRUE
Back
What type of HTML list will automatically place a number in front of the items?
Front
ordered list
Back
When do you need to use a fully qualified URL in a hyperlink?
Front
when linking to a page on an external web site
Back
<select></select>
Front
Form element that contains <option></option> tags. By default this displays as a drop-down list of options and allows one to be selected. The size attribute determines how many options are shown at once and the multiple attribute allows more than one option to be selected.
Back
action=""
Front
Specifies where to send the form-data when a form is submitted.
Back
<dd></dd>
Front
Definition used in definition list.
Back
<input type="submit">
Front
Form button that will submit the form data when clicked
Back
checked
Front
Form attribute that defaults a form field to a checked value
Back
What tag pair is used to create a new paragraph?
Front
<p> </p>
Back
multiple
Front
Form attribute that allows multiple values to be entered in a single text field, or multiple options to be selected in a <select> field
Back
title=""
Front
Form input attribute that provides a tooltip to the user
Back
The title element configures large, bold text at the beginning of the web page document. TRUE OR FALSE?
Front
FALSE
Back
<input type="reset">
Front
Form button that will reset all of the form fields when clicked
Back
Choose the tag pair that is use to link web page documents to each other.
Front
<link> tag
Back
The content that displays in the browser is contained in the body section. True or False
Front
TRUE
Back
What tag pair is used to create the largest heading?
Front
<h1> </h1>
Back
<form>
Front
The <form> tag is used to create an HTML form for user input
Back
Separate Borders
Front
Default value for table borders that gives each cell its own border.
Back
Choose the tag pair configures text to be indented from both the left and right margins.
Front
<blockquote>.. </blockquote>
Back
<input type="text">
Front
Default type of an input, allows for text to be entered in a single line
Back
<input type="radio">
Front
Form element that creates a group of buttons and allows the user to choose only one of the items in the group. To group radio buttons together they must all have the same name attribute. Example: <input type="radio" name="groupName">
Back
<input type="password">
Front
Form element that obscures what you type into it
Back
<table></table>
Front
Container for all of the table information
Back
Select the items below that can be used as a CSS Selector.
A. an HTML element
B. a class name
C. an id name
Front
ALL
Back
<optgroup></optgroup>
Front
Used to group related options in a <select> field. If you have a long list of options, groups of related options are easier to handle for a user.
Back
The <meta> tag is coded in the ________ section of a web page document.
Front
header
Back
To associate an external style sheet with a web page, code:
Front
a link element in the head section of the web page
Back
<frame></frame>
Front
Defines an area of the page into which another webpage can be loaded
Back
Which CSS property configures the font typeface?
Front
font-family
Back
<input type="checkbox">
Front
Form element that produces a box that can be checked on or off.
Back
Section 4
(50 cards)
CSS
Front
flexible, cross-platform, standards-based language developed by
the W3C. (styles)
biggest disadvantage is all browsers don't support it
Back
Use the ________ property to configure bold text using CSS.
Front
font-weight
Back
Body Section
Front
(what is actually displayed) contains the actual tags, text, images, and other objects that
are displayed by the browser as a web page. <body>
Back
Use the ________ tag to configure a section of a web page that is physically separated from others.
Front
<div></div>
Back
Select the code below that uses CSS to configure a class called "offer" with blue text that uses the Arial or sans-serif font typeface.
private network that is contained within an organization or business. Its
purpose is to share organizational information and resources among coworkers. When
an intranet connects to the outside Internet, usually a gateway or firewall protects the
intranet from unauthorized access.
Back
CSS was first proposed as a standard by the W3C in ________.
Front
1996
Back
accessible
Front
website provides accommodations that help
individuals overcome these barriers.
will automat-
ically launch the default mail program configured for the browser
ex. of email
<a href=" mailto: help@ terrymorris. net">help@terrymorris. net</a>
Back
Head Section
Front
contains information that describes the web page document
Back
Title Element
Front
<title> what will appear in title of bar of web browser
Back
Head Element
Front
conatins head section <head> </head>
Back
Section 5 08 of the Federal Rehabilitation Act
Front
requires people to have to accomodate pages with people with disabilities
Back
extranet
Front
PRIVATE network!
Back
Cascading Style Sheet rules are comprised of:
Front
Selectors and Declarations
Back
The Selector
Front
can be an HTML element name, a class
name, or an id name.
Back
Meta Tags
Front
describe the document <meta.....> a stand a lone tag doesnt need </>
Back
World Intellectual Property Organization
Front
helps protect property rights on the web
Back
background-color property
Front
configures background color for an element.
ex. body { background-color: yellow }
Back
When CSS is coded in the body of the web page as an attribute of an HTML tag it is called ________.
Front
Inline
Back
what does the element div do?
Front
configures a structural block area, or "division," on a web page, with empty space above and below.
Back
Use the ________ tag to associate a web page with an External Style Sheet.
Front
<link>
Back
Use the ________ tag to code embedded styles on a web page.
Front
<style> .. </style>
Back
href
Front
connects these anchor links
Back
Which CSS property can be used to configure italic text?
Front
font-style
Back
Berners-Lee created the.....
Front
world wide web (hyperlinks)
Back
Web Accesability Initiative
Front
people need to access internet group created
Back
To apply a style to a certain group of elements on a web page, configure a CSS ________.
Front
class
Back
absolute link
Front
indicates the absolute location of a resource on the Web.
ex.
<a href=" http: //webdevfoundations. net " >Web Development & Design
Foundations</a>
Back
people must be able to access internet with disabilites
Front
...
Back
Ordered List
Front
numbered lists
<li>
<ol>kljlkjsdf
</ol>
Back
anchor element
Front
to specify a hyperlink , often referred to as a link , to another web page or file that you want to display. Each anchor element begins with an <a> tag </a> form hyperlinks
Back
DTD
Front
identifies the version of HTML that you're using (top of web page document)
Back
Unordered Lists
Front
<ui> bulleted format list begins with <li>
<li>
<ul>kljlkjlkjljkj
</ul>
Back
WWW world wide web
Front
the graphical user interface to information
stored on computers running web servers connected to the Internet—
Back
Phrase Elements
Front
sometimes referred to as logical style elements , indicate the context and meaning of the text between the container tags. It is up to each browser to interpret
that style.
Back
Select the code below that uses CSS to configure a background color of #eaeaea for a web page.
Front
body {background-color:#eaeaea; }
Back
Blockquote Element
Front
is used to display a block of quoted text
in a special way—indented from both the left and right margins (lets it indent) like..
asdksdfklfgkh
<blockquote>
kjlkjlkjlkjkg
</blockquote>
Back
<i> means
Front
makes text in italics
Back
<strong> means
Front
makes text stand out in BOLD
Back
Select the code below that uses CSS to configure a id named "footer" that configures small, italic text.
Front
footer { font-size: small; font-style: italic;}
Back
code for empty speak
Front
Back
Headings..
Front
h1 BIGGEST FONT h6 smallest font
Back
how did internet start
Front
for the military
Back
The declaration property used to set the text color on a web page is:
Front
color
Back
Use the ________ tag to configure a generic area on a web page that is embedded within a paragraph or other block display element.
image to repeat in page
repeat-y , (vertical repeat),
repeat-x (horizontal repeat), and no-repeat (no repeat).
Back
contextual selector
Front
...
Back
<link rel=" stylesheet" href=" color. css" >
Front
link=connects
rel- "stylesheet"
href- name of style sheet file (ex. fishcreek)
Back
color-property
Front
changes color of the TEXT
ex. body { color: blue }
Back
web page development process IADIM
Front
are systems investigation, systems analysis, systems design, systems implementation, and maintenance.
Back
id tag
Front
#section14{color:red}
Back
SRC
Front
file name of the image
Back
A web hosting provider
Front
offers storage for you web provider
Back
to add figure caption
Front
<style>
#figure
<style/>
Back
selectors are periods and IDs are #
Front
...
Back
linear design
Front
in a line ---------- info is set up
Back
h2,h3{color: red}
Front
color to heading 2 and 3
Back
p.normal{color:red}
Front
just that paragraph
Back
font-style
Front
style of font, roman italic oblique
Back
class selector
Front
when you want to change a specific word or part of a paragraph or point ,
begins with a DOT or PERIOD
ex. . feature { color: #FF0000; }
Back
padding
Front
Shorthand notation to configure the
amount of padding— the blank
space between the element and its
border ( the space between border and text)
Back
hyper link example
Front
<a href=" http: //webdevfoundations. net " >Web Development & Design
Foundations</a>
Back
The Website Development Cycle,
Front
shown in Figure 10.2 , usually consists of the following steps: Conceptualization, Analysis, Design, Production, Testing, Launch, Maintenance,
and Evaluation.
Back
A horizontal rule element
Front
<hr> visually separates areas of a page and configures a horizontal line across a web page.
ex. lkjslkjdslkjdlfkjd
________________________________ (horizontal rule)
lijsdfkjsdlfkjsdflkjsdlfkjslkdfj
Back
image link
Front
to make an image link all you need to do is surround image with anchor tags <a>
ex.
<a href=" index. html" ><img src=" home. gif" height=" 19" width=" 85"
alt=" Home" ></a>
Back
embedded styles
Front
apply to an entire webpage! inline to a specific part
ex. <style> </style> tag in the HEAD section named "text/css"
Back
font-family
Front
name of a font, Any valid font or a font family such as serif, sans-serif, fantasy, monospace, or cursive
Back
JPEG images
Front
are best used for photographs. CANNOT be made transparent saved at 80% has good quality, regular pic
Back
id selector
Front
another way to apply styles to certain parts in your webpage you place this in your style page
#footer { color: #333333;
font-size: . 7 5em;
font-style: italic; }
then in your regular page put id="footer" wherever you want the change to happen
<div id=" footer" >This paragraph will be displayed using styles
configured in the footer id. </div>
Back
domain names
Front
for your company choose wisley be short not fancy
Back
selector vs. declaration
Front
The selector is the body tag, and the declaration sets the color property to the value of blue.
Back
external style sheet
Front
is a text file with a .css file extension that contains CSS style rules. links by using Link tag
Back
POUR
Front
P erceivable, O perable, U nderstandable, and R obust,
Back
Image Element
Front
<img> show graphics on a page
ex. <img src=" logo. gif" height=" 2 00" width=" 500" alt=" My Company Name" >
Back
GIF images
Front
are best used for line drawings containing mostly solid tones and simple images such as clip art. images are transparent
when applying your class selector to normal page..
Front
you put it right before the words you want to do for example.
<li class=" feature" >Usability Studies</li>
Back
border-property
Front
the border can change color border-color; border-style (dotted, dashed, solid)
Back
example of complete selector
Front
h2 { background-color: #AEAED4;
color: #19197 0;
font-family: Georgia, " Times New Roman" , serif;
text-align: center; }
Back
opacity property
Front
transparency 0 complete transparent 1 opacity no transparent
Back
the Span Element
Front
span element defines a section on a web page that is
not physically separated from other areas;
Use the <span> tag if you need to format an area that is contained within another,
such as within a <p> , <blockquote> , <li> , or <div> tag
Back
only kinds of images you can add
Front
.jpg .gif
Back
font-size
Front
size of font normal italic oblique
Back
Inline CSS tag for Style
Front
<h1 style=" color: #cc0000" >This is displayed as a red heading</h1>
Back
h2, h3{font-family : Arial, 'Times New Roman',Garamond}
Front
in quotations becuase you cannot have spaces between the Times New Roman
Back
hierarchical organization .
Front
organizing like tables format different sites connected
Back
link element
Front
associates an external style sheet with a web page
<link>
on style page you have . companyname { font-weight: bold;
font-family: Georgia, " Times New Roman" , serif;
font-size: 1. 25em; }
then inside the <p> tags you use the span to make the changes
ex. <p><span class=" companyname" >Trillium Media Design</span> will bring