Download Quiz #2: HTML + CSS NAME: 1. What does HTML stand for? Home

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

URL redirection wikipedia , lookup

Cascading Style Sheets wikipedia , lookup

Transcript
Quiz #2: HTML + CSS
NAME:
1. What does HTML stand for?
Home Tool Markup Language
Hyperlinks and Text Markup Language
Hyper Text Markup Language
Hyper Techies Made-up Language
2. What is the correct HTML for creating a hyperlink?
<a>http://www.google.com</a>
<a href="http://www.google.com">google</a>
<a url="http://www.google.com">google.com</a>
<a name="http://www.google.com">google.com</a>
3. What is the correct way to close an e-mail link tag?
</a>
</mail>
<a>
</email>
4. H6 produces a larger text size than an H1?
True
False
5. What is the correct HTML for inserting an image?
<img src="image.gif" />
<img href="image.gif />
<image src="image.gif" />
<img>image.gif</img>
6. What does CSS stand for?
Colorful Style Sheets
Cascading Style Sheets
Computer Style Sheets
Creative Style Sheets
7. Where in an HTML document is the correct place to refer to an external style sheet?
At the top of the document
In the <head> section
In the <body> section
At the end of the document
8. Which is the correct CSS syntax?
{body;color:black}
{body:color=black(body}
body {color: black}
body:color=black
9. How do you display a border like this:
The bottom border = 5 pixels The top border = 8 pixels The left border = 15 pixels The right border = 1pixel?
border-width:5px 15px 8px 1px
border-width:8px 1px 5px 15px
border-width:8px 15px 5px 1px
border-width:8px 5px 15px 1px
10. What is the purpose of an FTP program?
Backup your Web files
Transfer files easily between two desktop computers
Transfer files onto a Web server
Transfer files onto Webster, a reference to a TV show you likely don’t know
BONUS QUESTION:
How many characters are in a hexadecimal color?