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

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;

24 Cards in this Set

  • Front
  • Back
The text between <html> and </html>
describes the web page.
The text between <body> and </body>
is the visible content.
The text between <h1> and </h1>
is displayed as a heading.
The text between <p> and </p> is displayed as a paragraph.
is displayed as a paragraph.
<h1> is ___ while <h6> is ____
big, small
make an HTML link with this address:
www.w3schools.com using <a>
<a href="http://www.w3schools.com">
Click Here</a>
Show w3schools.jpg with <img>
<img src="w3schools.jpg" width="104" height="142" />
Links : <a>
<a href="http://www.whatever.com">Click Here</a>
An HTML element
is everything from the start tag to the end tag
<br />
starts a new line
HTML elements containing other HTML elements are said to have
nested elements
Empty HTML Elements =
are elements that contain no content.
Attributes provide additional information about the
element.
are always specified in the start tag.
Attributes
Atributes come in name/value pairs like: name=”value”
Atributes
attribute: class
value: class_rule or style_rule
The class of the element
attribute: id
value :id_name
unique id for the element
attribute: style
value: id_name
an inline style definition
attribute: title
value: tooltip_text
a text to display in a tool tip
an empty line is added by the browser before and after
headings.
<hr />
creates a horizontal line or rule
are not read by the browser.
HTML comments
create a comment with <!>
<!-- This is a comment -->
read---->take notes----> make flash cards----> move on to new section
study