review for final:
Review Questions
Know the parts of the html syntax:
- element
- attribute
- value
What is the basic structure of an html 5 web document?
<!doctype html>
<html lang=”en”>
<head>
<meta charset=”utf-8″>
<title> </title>
</head>
<body>
</body>
</html>
What are the new html 5 elements?
How do you correctly link an html file to an external css file?
How do you create a single column, fixed width layout that always stays centered, no matter how wide or how narrow the browser window is open?
What is an element selector?
What is a class selector? -
When you use a class selector in your css, then you have to use which attribute in the html?
In the css, what punctuation mark does the class selector start with?
What is an id selector?
When you use an id selector in your css, then you use which attribute in the html?
In the css, what punctuation does the id selector start with?
What does a pseudo selector look like?
What is the universal selector?
Why do we knock down the default browser font size in the following way?
body {font-size: 62.5%}
- How does the ‘em’ property work?
How do we calculate the full width of a box of content generated by an h1 or a p or a div or any element for that matter?
You are responsible for all the properties we have covered: – @font-face, margin, padding, border, font-size, font-family, background-image, background-attachment, background-repeat, width, text-decoration, etc etc.
favicon how-to
- In photoshop, create a 32×32 pixel document. Find some aspect of your web site that looks good that small.
- Save As-> favicon.ico
- Upload this file to the same directory as index.html.
It should show up automatically. If it doesn’t, try the below:
favicon for Internet Explorer
Put these links inside the head tags so that favicon shows up in IE, if it didn’t initially
<link rel=”icon” type=”image/ico” href=”favicon.ico”>
<link rel=”shortcut icon” href=”favicon.ico”>
Feel free to drop me an e-mail if you need help or have any questions: ninagems@yahoo.com or use the contact form here.
Leave a comment