Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
line break (breaks without starting new paragraphs) |
|
|
Term
|
Definition
- An HTML element starts with a start tag / opening tag
- An HTML element ends with an end tag / closing tag
- The element content is everything between the start and the end tag
- Some HTML elements have empty content
- Empty elements are closed in the start tag
- Most HTML elements can have attributes
|
|
|
Term
|
Definition
everything in between is the body of the page |
|
|
Term
|
Definition
defines the html for that page |
|
|
Term
|
Definition
HTML elements with no content are called empty elements.
<br> is an empty element without a closing tag (the <br> tag defines a line break).
|
|
|
Term
|
Definition
- Attributes provide additional information about an element
- Attributes are always specified in the start tag
- Attributes come in name/value pairs like: name="value"
|
|
|
Term
<a href="http://www.w3schools.com">This is a link</a>
what is the attribute? |
|
Definition
|
|
Term
|
Definition
<h1> </h1
goes through h6 |
|
|
Term
<!--...-->
ex. <!--what is this?--> |
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
Strong tags (bolds text, and places more emphasis on text) |
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
inserted text (underlined) |
|
|
Term
|
Definition
deleted text (strikethrough) |
|
|
Term
<abbr> <abbr>
example: <abbr title="World Health Organization">WHO</abbr> |
|
Definition
|
|
Term
<acronym> </acronym>
example: <acronym title="as soon as possible">ASAP</acronym> |
|
Definition
|
|
Term
|
Definition
defines an address and contact information |
|
|
Term
<bdo> </bdo>
example: <bdo dir="ltr">
Here is some Hebrew text
</bdo> |
|
Definition
text direction
In the example, the text "here is some hebrew text" would read left to right (ltr). RTL changes it to right to left |
|
|
Term
<blockquote> </blockquote>
example: A long quotation:
<blockquote>
This is a long quotation. This is a long quotation. This is a long quotation. This is a long quotation. This is a long quotation.
</blockquote> |
|
Definition
a long quotation; a quotation block |
|
|