![]() ![]() |
| |||||||||
| Hotspots: Slides and Code TA Corner Comments? Announcements FAQ Static Webspace | ||||||||||
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
| Most browsers are forgiving about details like this, so you don't really need to bother. But if you bend the rules, your pages may not display correctly on all browsers now or in the future. Colin Potts |
| Don't worry about it. If you're really concerned, add this tag to your <head>... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> -Blake O'Hare |
| You may use this doctype on your main page if you are using frames: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> That should fix most of those problems. -Blake O'Hare |
| I understand your frustration, but you will be going over this, and if you have any problems, come visit one of us at office hours, we are glad to help. Liz Helms |
| Sounds good to me. Liz Helms |
| It won't work on Mac. If this statement does not apply to you, it is difficult to tweak this problem without being at your computer. Please see a TA with your laptop or if you don't have a laptop, go see a TA that has a laptop and email all your files to yourself before you go. -Blake O'Hare |
| This wasn't mentioned in the tutorial, but there are certain characters that are not allowed. If you have any weird symbols, use HTML entities in their place. If that's not the case, seek a TA to help hunt them down. -Blake O'Hare |
| Yes. -Blake O'Hare |
| It has to be named EXACTLY index.html or index.htm. It is case-sensitive. -Blake O'Hare |
| I use Fugu. You should be able to download it from OIT.Colin Potts |
| The host is acme.gatech.edu -Blake O'Hare |
| Your main HTML file. -Blake O'Hare |
| I'm not sure what you are asking. Please clarify your terminology. -Blake O'Hare |
| Yes. Just make sure you link to it correctly. -Blake O'Hare |
| Viewing a web page locally from your hard drive allows case insensitive file paths for images and such. Viewing a page on a server (usually) is case sensitive. If that's not the problem, then I need to see your page to diagnose this. -Blake O'Hare |
| It is where ever you uploaded it. I cannot provide more information than this. Use WinSCP to browse your directory or upload your 2nd page again and keep track of where you uploaded it. -Blake O'Hare |
<p align="center">is incorrect. The error states "document type does not allow element "P" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag." This is a common function used and have even seen it used in some of Blake's example HTML for the lab. Why does it claim that this is an error?
| Chances are you put a p tag where it violated the nesting rules of another tag. For example... <table> <p>stuff</p> <tr>etc... -Blake O'Hare |
| You are incorrect. Closing of standalone tags validates fine for me with this doctype. Please check that there aren't other errors that are making it appear this way. -Blake O'Hare |
| If you read the HTML 4.01 specification, no where does it state closing of standalone tags as part of it. Sure, tags such as img tags will validate fine with or without it, but meta tags cannot have the closing / as seen in the next question. Please see the example meta Content-Type tag in the specification here: http://www.w3.org/TR/html4/charset.html: |
| I always considered XHTML a proper subset of HTML and figured that would work. You are correct about the meta tag, it does not require closing. I have been pwned. -Blake O'Hare |
| See above post |
| Yes, notepad is recommended. -Blake O'Hare |
| If you do that, then any validation errors on your secondary page will be incorporated into your grade. You can do this if you want to, but be careful and make sure all pages validate cleanly. -Blake O'Hare |
| To validate your html, we will copy the url into the w3 validator. So if is valid html for you then it should be valid html for the tas. You do not need to do anything else once your page is valid, on prism and has fullfilled all of the requirements. -Albert d'Heurle |
| You have to make sure the permissions of the folder you created are correct. -Albert d'Heurle |
| Check your capitalization and make sure they're the same. Amanda Bennett |
| You got it. Amanda Bennett |
| Nope. Don't forget a collaboration statement if you worked with someone though. Amanda Bennett |
| I'd suggest going to a TA's office hours for this one. Make sure that you have p tags where you want a paragraph to start and no extraneous closing paragraph tags. Amanda Bennett |
| Check out this page http://www.w3schools.com/html/html_fonts.asp There's a hint at the bottom of the page about why you aren't passing validation... Amanda Bennett |