|
Post by William Brewster on Jan 29, 2015 13:53:22 GMT -8
|
|
|
Post by Judy Fontanella on Jan 30, 2015 0:38:16 GMT -8
Nice work, William. Your page looks nice. There is one thing I'd like to point out to you, however.
Do you see how you added the attribute 'align="center"' to your heading tags. With the newer standards that is not considered proper. The newer standards dictate that we separate the styling from the HTML - so now all styling belongs with the CSS.
It's best to remove the align attribute from your HTML tags. Instead, make a rule like this in your CSS in the head of the page: h1 { text-align:center; }
|
|