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

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;

30 Cards in this Set

  • Front
  • Back
Comments
<!-- -->
Italics
<em> </em>
Headings
<h1> </h1>
<h2> </h2>
HTML
Hypertext Markup Language
CSS
Cascading Style Sheets
Images
<img src=" ">
Title
Goes in between <head>; appears at top of the browser window.
<h1> element
consists of the enclosing tags and the content in between
Attribute
Gives you a way to provide additional information about an element.
Style language
<style type="text/css">
Destination of a hyperlink
<a href="ex.html">example</a>
Image display
<img src="photo.gif">
Attribute Characteristics
1. attribute name (a, style, img)
2. equal sign
3. attribute value with double quotes
4. All enveloped in <>
Links
<a href="ex.html">example</a>
Href
Hypertext Reference
Images
If an image is in a folder within the main folder, you'll need to add another name to the href.
Image in another folder
<a href="bev/ex.html>example</a>
To go up a folder
<a href="../ex.html>example</a>
Parent/Child
If I have a folder "apples" inside a folder "fruit", "fruit" is the parent of "apples" and "apples" is the child of "fruit"
<a>
to link to another page
Destination of a hyperlink
<a href="ex.html">example</a>
Image display
<img src="photo.gif">
Attribute Characteristics
1. attribute name (a, style, img)
2. equal sign
3. attribute value with double quotes
4. All enveloped in <>
Links
<a href="ex.html">example</a>
Href
Hypertext Reference
Images
If an image is in a folder within the main folder, you'll need to add another name to the href.
Image in another folder
<a href="bev/ex.html>example</a>
To go up a folder
<a href="../ex.html>example</a>
Parent/Child
If I have a folder "apples" inside a folder "fruit", "fruit" is the parent of "apples" and "apples" is the child of "fruit"
<a>
to link to another page