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

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;

51 Cards in this Set

  • Front
  • Back
What are the three most used browsers?

IE, Firefox & Safari
What does HTML stand for?

hyper text markup language
HTML is a collection of ___, ____, and _____ that build up an electronic document?

tags, attributes, values
What are the 5 parts of a non-empty HTML document?

1. start tag 2. attribute 3. value 4. content 5. end tag
What tag opens and closes a HTML document?

<html></html>
What tag follows the <html> tag and contains information that loads before the visible portion of the web page?

<head></head>
What tag describes the contents of the document, is important to search engines and is found inside the <head>?
<title></title>
What tag contains all the text and images that are displayed in the view port?

<body></body>
What do we use to transfer files?

FTP
What does SFTP stand for?

Secure File Transfer Protocol
What are the 5 rules of an xhtml document?

1. Open with proper doctype, namespace and content type
2. Write all tags and attributes in lowercase
3. Quote all attribute values
4. Close all tags
5. All attributes must have values
CSS is the language web designers use to change...

fonts, layout, colors, background images & color
What is the file extension for a Cascading Style Sheet?

.css
CSS files are attached in the ___ of a HTML document.

<head></head>
What is the syntax to attach an external CSS file to a HTML document?

<link href=”css/example.css” rel=”stylesheet" type=”text/css” />
What are the 3 layers of web design? What language does each correspond with?

Structure - html
Presentation - CSS
Behavior - javascript
What is the term that gives meaning to the text inside HTML tags?

Semantics
What are the 3 parts of a CSS rule?

Selector, Property & Value (Property and Value are inside declaration)
What are the 3 basic types of selectors?

Tag, Class, and ID
Tag selectors are ____, they apply to every instance of that element.

global
Class selectors can be used _____, they can be applied to multiple elements.

repetitively
ID selectors are _____, they can only be applied once per XHTML document.

unique
A division is a ____ level element, meaning that every instance starts on a new line.

block
What is the semantic meaning of a division?

It’s a section of the page with related information.
Divisions are typically associated with what HTML attribute?

ID’s
What are the properties of the box model?
(from the inside out)
1. content
2. padding
3. border
4. margin
What property in CSS is used to create multiple columns?

floats
What is the equation used to determine the actual width of a division in CSS?

content width + 2(padding + border + margin)
What are the 3 image formats for the web?

jpeg, gif, png 8
What image format is used for photographs and high color images?

jpeg
What images formats use color tables of 256-colors?

gif and png 8
What image formats have transparency?

gif and png 8
What is the syntax for loading an image into HTML?

<img src=”img/my.jpg” alt=”My Image” />
What is the syntax for loading an image into CSS?

#idname {
 background: url(.../img/my.jpg);
}
When should I use a class and when should I use an ID?

Classes are used for styles that are repeated on the same page. ID’s are used to specify unique sections of the page.
What is the CSS syntax to remove the border from a linked image?

a img {
border: none;
}
What is the syntax for changing links?
Love Van Halen Always a:link a:visited a:hover a:active
What is the CSS syntax for changing the margin to 10px top, 20px bottom, 30px left & right?

#content {
 margin: 10px 30px 20px;
}
What is the CSS syntax for changing the background color, image, and direction the image repeats?
#content {
 background: color url repeat;
}
What is the CSS syntax for affecting all linked text, in a list element, inside the navigation DIV (with an ID of nav)?

#nav li a {
 font-size: 90%
}
What does the following code affect?#navigation li a.active {
 font-weight: bold;
}
The . between a & active represents an active class. Anchor with a class that lives inside a list item. Changing the font weight to bold.
What tags make up a table in HTML?

<tr> <th> <table> <caption> <thead> <tbody> <tfoot>
What attribute is used within the <table> tag for screen readers?

summary
What attribute is used to span across rows? Columns?

rowspan and colspan - used with <th> or <td> tags
What method did we use to alternate row colors in the table?

Assign a class to the odd rows
Explain the following code:
table {
 font: 80%/150% Times, Georgia, serif
}

It’s a table tag, the 80/50 part is font size & line height and the other is font family.
What does the action attribute of the <form> element do?

Instructs browser “what to do” with the forms information upon pressing submit.
Name 3 different values for the type attribute for <input> elements:

text, checkbox, radio, submit, reset, file, hidden
What is the purpose of the <fieldset> tag?

Surrounds the form with a border to provide a little more structure
What element assigns a caption to the <fieldset>?

<legend>
What element allows the user to click on a word and bring the cursor’s focus to its related text field?
<label>