Website architecture class site coming soon....
Soon, it begins.....
Until then, you can get these documents here:
Wheel questions:
- What happens when incompressible content is put in a table?
- Why are there fewer special/escaped characters in XML than HTML?
- Why are the tags and attributes in XHTML all in lowercase?
- Is there an advantage/disadvantage to using inline height and width specifications (with CSS) vs. putting them in the header of the document (not an external file)? Are there correctness issues (w/r.t. correct sizing behaivor)?
- What happens when a large image is given a smaller height/width in HTML? Narrate the sequence of events.
- What would be a problem with writing the logo and menu at the bottom of the document and then positioning it at the top with CSS?
- What would be one way of keeping the browser cache concurrent with a site?
- What would be a way of keeping the browser cache concurrent with a site, aside from random estimation by the browser?
- How would you generally solve the problem of browsers limiting concurrent connections to the same server?
- What were pseudo-elements?..
- The DOM event 'load' only fires after all external files are loaded. How would you execute JavaScript just after the text content has loaded?
- You may want to defer loading an external JavaScript file (or running any JavaScript) until later in your page load, since it blocks all other rendering activity - including potentially other downloads. Is there and advantage/disadvantage to loading JavaScript via a <script> at the bottom of your HTML vs. within a 'load' event handler?
- Can you give any advantages for either client-side or server-side validation?
- If a client submits a form with some invalid information, how do you present the form again and make sure the client's data appears in the form fields? (i.e. do not lose the text he/she entered; put it back in the form when you present it again)
- How would you (probabilistically) disable the autocomplete feature of HTML forms without relying on the browser?
- Why do you need to call session_start() before writing the main text of the page?