- Shuffle
Toggle OnToggle Off
- Alphabetize
Toggle OnToggle Off
- Front First
Toggle OnToggle Off
- Both Sides
Toggle OnToggle Off
Front
How to study your flashcards.
Right/Left arrow keys: Navigate between flashcards.right arrow keyleft arrow key
Up/Down arrow keys: Flip the card between the front and back.down keyup key
H key: Show hint (3rd side).h key
![]()
PLAY BUTTON
![]()
PLAY BUTTON
![]()
16 Cards in this Set
- Front
- Back
|
Firewall
|
This term refers to security measures designed to protect a networked system (often one inside a corporation; ie. "intranet") from unauthorized or unwelcome access
|
|
Browser
|
A type of software that allows you to navigate information databases; examples are Netscape Navigator, Internet Explorer, and NCSA Mosaic.
|
|
FTP (File Transfer Protocol):
|
Allows the transfer of files between computers
|
|
HTML (HyperText Markup Language):
|
The coding language used to tag various parts of a Web document so browsing software will know how to display that document's links, text, graphics and attached media. HTML can be written with any text editor.
|
|
HTTP (Hypertext Transfer Protocol):
|
HTTP is used to link and transfer hypertext documents.
|
|
Hypertext:
|
the system that allows documents to be cross- linked so that the reader can explore related documents by clicking on a highlighted word or symbol.
|
|
. </TAG>
|
used to tell a browser how to display text and graphics
|
|
Structure tags
|
<HTML>, <HEAD>, <TITLE>, and <BODY> tag pairs.
|
|
<!text>
|
This is a comment for documentation inside the HTML. A browser will not display this "text".
|
|
<HR>
|
Places a Horizontal Rule line. Serves as a section divider.
|
|
<BR>
|
This forces a line BReak. Whatever is after the <BR> tag will start from the left margin of the next line on the screen.
|
|
Headings within the body of an HTML
|
There are six levels of headings. H1 is "most important" and H6 is "least important." By default, browsers will display the six heading levels in the same font, with the point size decreasing as the importance of the heading decreases.
<H1>Heading 1</H1> <H2>Heading 2</H2> <H3>Heading 3</H3> |
|
Paragraph Tag
|
This is the start of the paragraph. It really does not matter how long or how short the paragraph is
<P> |
|
Blockquote Tag
|
The BLOCKQUOTE tag basically indents everything in its container
<BLOCKQUOTE> |
|
Boldface
|
Everything between <B> ... </B> is boldfaced
|
|
Italicized
|
Everything between <I> ... </I> is Italicized text
|