In this lab we will be creating several tables, and then validating the HTML and CSS. Please do not hesitate to use copy and paste: the calendar table in particular is very repetative, and there's no point in retyping the whole thing for each row.
Write the HTML and CSS for the following table, and add a caption:
Paste some version of the following HTML into the bottom of your page, right above the </body> tag (this is a modified and embellished version of the HTML that appears on the "valid" page when you have successfully validated your HTML and CSS):
<div class="footer"> <div class="cluster"> <div>Created by Ingbert Floyd (<a href="mailto:ifloyd2@uiuc.edu">email me</a>)</div> <div>Last updated: Wednesday, 3rd of October, 2007</div> </div> <div class="cluster"> <div>HTML Validation:</div> <div> <a href="http://validator.w3.org/"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0 Strict" style="border:0;width:88px;height:31px"></img></a> </div> <div>Last validated: Wednesday, 10th of October, 2007</div> <div><a href="http://validator.w3.org/check?uri=referer">Validate the HTML of this page yourself.</a></div> </div> <div class="cluster"> <div>CSS Validation:</div> <div><a href="http://jigsaw.w3.org/css-validator/"> <img style="border:0;width:88px;height:31px" src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></img> </a> </div> <div>Last validated: Wednesday, 10th of October, 2007</div> <div><a href="http://jigsaw.w3.org/css-validator/check/referer">Validate the CSS of this page yourself.</a></div> </div> </div>
In the text you just pasted into your document, make the obvious changes (e.g.: edit the name of the author, edit the email address, edit the date last modified, the date last validated, etc.). Feel free to make other changes as well, and style this HTML however you please (just don't use "display: none;"). I typically style it as follows:
.cluster { margin: 1em 0em 1em 0em; } .footer { padding: 1em 1em 1em 1em; font-style: italic; font-size: 80%; border-top: 2px solid black; }
To submit this assignment, upload the page you created to the GSLIS I: drive, and send me a link.
Out of 25 points total.