NEW
Font size
WorksheetsBasics of HTML & CSS
Total questions: 10
Worksheet time: 2mins
Body tags are used;
Used for only the header
Used only for the paragraph
element that wraps everything that is visible on the page.
not used in html
Which is the proper way to write an h1 tag
<h1>"Hello"<h1>
<h1>Hello</h1>
{h1}Hello{/h1}
<h>Hello<h>
What is the correct HTML for creating a hyperlink?
<a url="http://www.google.com">Google</a>
<a href="http://www.google.com">Google</a>
<a src="http://www.google.com">Google</a>
<a>Google</a>
What is the difference between HTML and CSS?
CSS is one type of HTML
HTML gives a webpage structure. CSS provides styling.
CSS structures a webpage. HTML strictly provides styling.
There is no difference
CSS stands for
Colorful style sheets
Cascading style sheets
Creative style spread
Computer Style Spread
Where in the HTML document is the correct location to insert code to link to your external CSS?
At the very end of the document
In the <body> section
In the <head> section
At the very beginning of the document
If you want to have more than one property for a CSS selector, what character separates them?
dash (-)
semi-colon (;)
colon (:)
comma (,)
Javasript requires a compiler.
True
False
Which is the correct way to format a Font Family for a paragraph?
p { font-face: Arial; }
p { family-font: Arial; }
p { font-family: Arial; }
p { font: Arial; }
A collection of web pages is
server
website
www
web links
