SSI and CSS




CS174

Chris Pollett

Feb 15, 2016

Outline

Server Side Includes (SSI)

Getting (SSI) running

The SSI Commands

More on SSI command

Quiz

Which of the following statements is true?

  1. A meta tag can be used to specify a shortcut icon
  2. An HTML entity can be used to output math symbols in HTML.
  3. The default method for a form is post.

Stylesheets

Levels of Style Sheets

Basics of Styles

Examples of Simple Selectors

h1 {font-size: 24pt;} /* would apply to all h1 tags in the document */

h2, h3 {font-size: 14pt;} /* notice applies to both h2 and h3 tags */

You can also specify that styles should only apply to elements in certain positions within the file:

body b i {font-size: 30pt;} /* only for bolded italic'd text within file, doesn't work NS7*/

Class selectors

ID Selectors