Web Design Flashcards
The open and close tags for a table are?
Every HTML document must begin and end with these tags?
The open and close paragraph are?
<p>
</p>
The open and close tags for the section of the HTML document where the main body of the page will be displayed are?
Ff
The open and close tags to display the name or title of the page of the tab in the browser such as Internet explore or chrome are?
The open and close tags for the table column are?
The open and close tags for the table row are?
The tags to make horizontal line on a web page is?
<hr></hr>
The tags to break and move to the next line if the web page is?
<br></br>
Write the code for the open tag of a table that would set the background color of the table red?
Write the open tag that set the background color of the web page to blue?
Write the open tag of the first tag that would appear in an HTML document?
Write the open and close to create an order list?
<ol>
</ol>
Write the open and close tags to create an un-ordered list?
<ul>
</ul>
Write the open and close tags for an item contained in a list?
<li>
</li>
Using the open and close Heading level tags, write the code that would display “King” in the largest font?
<h1>
</h1>
Write the code on one line that would display King High School on three separate lines using Heading level 3 and breaks?
<h3>King<br></br>High<br></br>school
</h3>
Which open and close tags contain the CSS coding?
Which open and close tags contain the JavaScript code?
Which open and close tags contain the script tags?
{}
Match the hexadecimal value to it’s closest color? #000000
Black
Match the hexadecimal value to it’s closest color? #FFFFFF
White
Match the hexadecimal value to it’s closest color? #FF0000
Red
Match the hexadecimal value to it’s closest color? #00FF00
Green
Match the hexadecimal value to it’s closest color? #0000FF
Blue
Match the hexadecimal value to it’s closest color? #888888
Gray
Write the CSS declaration to make an element’s text color red?
color: red;
Write the CSS declaration to center the text in an element?
text-align: family;
Write the CSS declaration to change an element’s font to Verdana?
font-family: Verdana;
Write the CSS declaration to change an element’s font to Times New Roman?
font-family: “Times New Roman”;
Write the CSS declaration to change an element’s font size to 18 points?
font-size: 18px;
Write the CSS declaration to change an element’s font to bold?
font-weight: bold;
Write the CSS declaration to change an element’s background color to lime?
background-color: lime;
Write the CSS declaration to make an element’s border 5 pixels thick, solid, and blue?
border: 5px solid blue;
Write the CSS declaration that will set an element’s left edge 5 pixels to the right of the left edge of its containing element?
Left: 5px;
Write the CSS declaration that will allow an element to be positioned at an absolute location?
position: absolute;
Write the CSS declaration that will set the element’s right edge 5 pixels to the left of the right edge of it’s containing elements?
right: 5px;
Write the CSS declaration that will locate an element 100 pixels from the top edge of it’s containing element?
top: 100px;
Write the CSS declaration that will set the width of an element to 50 pixels?
width: 50px;
Write the open and close symbols to encapsulate the CSS declaration(s) for an element?
{}
In a single line, write the CSS declaration that will set an element’s location on a web page to: x=75, y=50?
left: 75px; top: 50px;
What symbol is used at the beginning of a hexadecimal number to insure that the alphanumeric characters are treated as a hexadecimal number?
#
How many digits are their in a hexadecimal number that represents a color in CSS or HTML
6
Using the hexadecimal value for black, write the CSS declaration that will set an element’s background color to black?
background-color: #000000;
Write the CSS declaration that will assign the image “logo.gif” to an element’s background?
background-image: url(“logo.gif”);