-
What do FLA, SWF, and JAVA stand for?
Flash (.fla, .swf)
Java
-
What do AVI, MOV, WMV, MPG, RM, and FLV stand for?
Audio-video interleaved
Quicktime
Windows Media
Moving picture experts group
RealMedia video
Flash video
-
What do AIF, MP3, MID, RA, and WAV stand for?
Audio Interchange File Format
MPEG Audio Layer-3
Musical Instrument Digital Interface
RealAudio
Waveform Audio File Format
-
What do GIF, PNG, TIF, PDF, JPG, BMP, and EPS stand for?
Graphics interchange format
Portable network graphics
Tagged image file format
Portable Document Format
Joint photographic experts group
Bitmap
Encapsulated PostScript
-
What does .txt stand for?
Plain text
-
What CSS tags define a section in a document for layout purposes?
-
What are the three ways to apply CSS commands?
- internally
- externally
- inline
-
What tag adds a bullet?
<li> </li>
-
What tag creates a bulleted list?
<ul> </ul>
-
What tag creates one line of space between two lines of text?
(line break)
<lb> </lb>
-
What tag creates a new paragraph?
<p> </p>
-
What is a tag adds an image and defines its size?
<img src= "name" height="19" width="400">
-
What tag adds an image?
<img src= "name">
-
What tag creates a hyperlink?
<a href= "URL"> </a>
-
What tag creates italic text?
<i> </i>
-
What tags create bold text?
<b> </b>
OR
<strong> </strong>
-
What tag defines headline styles?
<h> </h>
-
What tag sets off page content?
<body> </body>
-
What tag displays the name of document in browser title bar?
<title> </title>
-
What tag sets off the title?
<head> </head>
-
What HTML tag creates and ends the HTML document?
<html> </html>
|
|