• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/20

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

20 Cards in this Set

  • Front
  • Back
* CSS stands for
* Styles define how to display
* Styles were added to HTML 4.0 to solve a problem
* External Style Sheets can save you a lot of work
* External Style Sheets are stored in
* Multiple style definitions will cascade into one
Cascading Style Sheets
HTML elements
CSS files
The CSS syntax is made up of three parts:
a selector, a property and a value:

selector {property: value}
Whend do you need quotes around a value?
Should all the time but when you have multiple words

p {font-family: "sans serif"}
How can you group multiple selectors?
h1,h2,h3,h4,h5,h6
{
color: green
}
To apply more than one class per given element, the syntax is:
<p class="center bold">
The selector is normally the HTML element/tag you wish to define, the property is the attribute you wish to change, and each property can take a value. The property and value are separated by a ____ and surrounded by
Colon
Curly Braces
You can also omit the tag name in the selector to define a style that will be used by all HTML elements that have a certain class. In the example below, all HTML elements with class="center" will be center-aligned: What would this look like
.center {text-align: center}
Do NOT start a class name with a ____ It will not work in Mozilla/Firefox.
number!
You can also define styles for HTML elements with the id selector. The id selector is defined as a
#

#green {color: green}
A CSS comment begins with
and ends with
/* This is a comment */
Write tag to link a css to an html page, including where it belongs in the page. The file may be called mystyle
<head>
<link rel="stylesheet" type="text/css"
href="mystyle.css" />
</head
REL describes the relationship to another web page or other internet resource. For example, if the related resource is the home page for the web site, then we say
<LINK HREF="index.html" REL=HOME>
who created the internet and when
US Department of Defence ARPA (the Advanced Research Projects Agency)
omputer network (to be called "ARPANET") was presented in October 19__, and in December 19__ the first four-computer network
67

69
_______, whilst working on a satellite packet network project for ARPA, started defining some rules for a more open networking architecture to replace the current protocol used in ARPANET. Later joined by _____ from Stanford University, the two created a system that masked the differences between networking protocols using a new standard. In the publication of the draft specification in December 1974, this was called the "_________________________".
Robert Kahn
Vinton Cerf
Internet Transmission Control Program"
On the thirtieth of April ___ in CERN released the source code of WorldWideWeb into the public domain, so anyone could use or build upon the software without charge. Before Minnesota used an information retrieval system called ____
1993
gopher
What was mosaic
First big we browser. Was licensed to be used for internet explorer
During the browser wars, Microsoft and Netscape focused on implementing new features rather than on fixing problems with the features they already supported, and adding proprietary features and creating features that were in direct competition with existing features in the other browser,
but implemented in an incompatible way.
In 1994, Tim Berners-Lee founded the _______ (W3C) at the Massachusetts Institute of Technology, with support from CERN, DARPA (as ARPA had been renamed to) and the European Commission. The W3C’s vision was to _____ the protocols and technologies used to build the web such that the content would be available to as wide a population of the world as possible.
World Wide Web Consortium
standardize
whats is wasp?
Web Standards Projec