• 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/14

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;

14 Cards in this Set

  • Front
  • Back

Browser

An applicatiom that displays web pages

Head tags

<h1> = biggest


<h6> = smallest

Spaces

<br> and <p>

Hr size

<hr size="5" width="75%">


<strong> = bold


<em> = italic


<u> = underline

MAP/BACKGROUND IMAGE

<img src="x.jpg" usemap="#map1" />


<a href="two.html">...</a>



<a href="#people">... </a>


<a name="people"></a>



<body style="background-image:url(picture.jpg);">


<body style="background-color:Navy;">


RGB Color

000000 = black


FFFFFF = white


DD3399 = mostly red


22AA99 = mostly green


9955EE = mostly blue

STYLES

<span style="font-fsmily: Verdana; color:red">



Float


Text-align


Font-family


Font-size


Color


Background-image:url(picture.jpg)


Background-color:Navy;


3 Ways to Use Styles

Coded directly into tags:


<h1 style="color:">My Heading</h1>



Embedded into head tag:


<head>


<style>


h1 {color:red};


</style>


</head>



Stored in html file:


<head>


<link rel="stylesheet" type="text/css" href="mystyles.css">


</head>

TABLES

<table>


<tr>


<th> Row 1 column 1 </th>


</tr>

DIV TAGS and CSS

<html><head> <link href="styles.css" rel="stylesheet" type="text/css"


</head>



<body class="twoColHybLtHdr">


<div id="container">


<div id="sidebar1">


<h3> sidebar1 content </h3>


</div>


<div id="maincontent">


<h1> main content </h1>


<p> lorm ipsum dolar sit amet.... </p>


</div>


</div>


</body>


</html>

FORMS/TEXTBOX

<form name="info"> ... </form>



Specifiy textbox:


<input type="text" name="city" size="7" maxlrngth="6">

CHECKBOX/RADIO

Check box:


<input type="checkbox" name="2day" checked="checked">



Radio button:


<input type="radio" name="year" checked="checked">

LIST

List/menu control:


<select>


<option>California</option>


<option>Oregon</option>


</select>

BUTTON

Button:


<input type="button" value="submit">