• 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
right align a paragraph
<p align="right"> </p>
the <p> tag's default alignment is what?
left
center align a paragraph
<p align="center"> </p>
element =
opening tag + content + closing tag
Name two languages used to create web pages.
HTML and CSS
What stores and serves up web pages created in HTML and CSS?
Servers
What retrieves and renders the served web pages in HTML and CSS?
Browsers
What language is used to control the presentation of HTML?
CSS or Cascading Style Sheets
How is HTML used?
We use HTML to mark up content with tags to provide structure.
Matching tags and their enclosed content are called?
Elements
An Element is comprised of three parts. Name them.
An opening tag, content, and a closing tag. Some elements do stand alone like <img>
Opening tags can have attributes.
Name a couple.
type and align , <STYLE type="text/css">
How does a closing tag get marked up?
With a "/" </p>
What three elements are always used in an HTML document?
<html>, <head> and <body>
When you want to link from one page to another what element do you use?
<a> the anchor element
What does the href attribute of the <a> element do?
It specifies the destination of the link.
The content of the <a> element is what?
It is the link label which is underlined by default.
What can you use for a link label?
words or pictures
What happens when you click on a link?
The browser loads the Web page that is specified in the href attribute
You can link to files in the ___ or files in ____.
same, different