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

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;

19 Cards in this Set

  • Front
  • Back
  • 3rd side (hint)
tags
elements are made up of tags
HTML
Hypertext Markup Language
every Web page is made up of two components:
* Content
* Controls
Elements
An HTML element is everything from the start tag to the end tag:
Elements are made up of tags
There are two kinds of elements:
* tag pairs

* singleton tags
Attributes
HTML's mechanism for providing additional information specific to one instance of an element
Attribute syntax
<tag attribute="value">
entity
*collection of ASCII (American Standard Code for Information Interchange) characters that stand for a non-ASCII character.

*the entity &copy; represents the copyright symbol

*an entity begins with an ampersand (&) and ends with a semicolon (;)
complete list of entities
www.w3schools.com
HTML two pieces
Header
Body
Basic Structure for every HTML Document
<html>
<head>
<title>
</title>
</head>
<body>
</body>
</html>
use the HTML heading elements to add headings to your page. You can specify up to six heading levels by using these elements:
<h1>A first-level heading is very large.</h1>
<h2>A second-level heading is smaller.</h2>
<h3>A third-level heading is smaller still.</h3>
<h6>A sixth-level heading is the smallest.</h6>
All the heading tags can take the align attribute, which can in turn take these values:

* left
* right
* center
* justify
<h1 align="center">This first-level heading
is centered</h1>
insert a line break in a particular place.
<p>This line of text will break<br />
wherever there is<br />
a line break tag<br /></p>
horizontal rule tag
<hr />
<p>This is a standard horizontal rule.</p>
<hr />
<br />
<p>The following rule is center-aligned, 5 pixels
wide, and has a width of 50 percent.</p>
<hr align="center" size="5" width="50%" />
Ordered lists are simply numbered lists.
<ol>
<li>Apricots</li>
<li>Raspberries</li>
<li>Cherries</li>
</ol>
type attribute enables you to specify which kind of list marker you want to use
* 1: Numbers (1, 2, 3, 4, 5)
* a: Lowercase letters (a, b, c, d, e)
* A: Uppercase letters (A, B, C, D, E)
* i: Lowercase Roman numerals (i, ii, iii, iv, v)
* I: Uppercase Roman numerals (I, II, III, IV, V)
The start attribute takes a number value so you can specify what number you want your list items to begin with.
<ol type="A" start="5">
<li>Carrots</li>
<li>Celery</li>
<li>Parsnips</li>
</ol>
An unordered list is just like an ordered list, but without the order. Web browsers display unordered lists as bulleted lists, and you use these two elements to build them:
<ul>
<li>Jelly beans</li>
<li>Candy corn</li>
<li>Candy canes</li>
</ul>