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

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;

11 Cards in this Set

  • Front
  • Back
Information about the Web page goes into what element?
<head> element
What you see in the browser goes into what element?
<body> element
How are most white spaces treated by the browser?
They are ignored.
How is CSS added to an HTML document?
By putting the CSS rules inside the <style> element.
The <style> element should always be inside what element?
<head> element
How do you use CSS?
You specify the style characteristics of the elements in your HTML using CSS.
What is a relative path?
It is a link that points to other files on your Website relative to the Web page you're linking from.
What do you use to link to a file that is one folder above the file you're linking from?
".."
".." means?
parent folder
Should spaces be used in names of folders and files on a website?
No
Why do we organize folders early on when creating a website?
So we don't have to redo paths as the Website grows.