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?