Here is a form page that requires a valid email and name for submission. There are three input fields: name, age and email. However, the name and email fields are required while the age field is optional.
I finally got this going once I found the right site with a validator form. I tried multiple places, and after getting stuck and having to tweak a bunch of things, I finally settled on this basic form.
http://www.netmechanic.com/news/vol6/javascript_no4.htm
Here is a form page that requires a valid email and name for submission. There are three input fields: name, age and email. However, the name and email fields are required while the age field is optional.
This is the homepage for the World Wide Web Consortium - it details all of the standards for HTML, CSS, etc etc. Its a great resource for web coding help. Site also contains tutorials for more information.
Are there any real differences between the tag and the tag? I have only really ever used the and don't recall ever even hearing about the same with and
I suspect the sticky note ate your tags! The difference between em and i is pretty much semantic. i and b were introduced by the browsers as tags, and not by the W3C. So to write valid code, you should really use the strong and em. But I will admit to slipping into i and b with some frequency. Again, best to get in the habit of strong and em, if at all possible.
For anybody who has Celiac's Disease (or just wants to go gluten-free): Here is a recipe for GF pizza crust. It's a bit long, but it bakes and it should conform to the 1-f standards. Have fun.
Looks good. A couple of notes: bgcolor (in the body tag) should be all one word if you use it, though we'll be doing CSS which gives you more flexibility. Also, you make heavy use of br. BR has a specific place, and what you really should be doing is wrapping each of those paragraphs in p tags. That will make life much easier when it comes to validating your code.
This is fine for the assignment, but note that it will not validate (I assume). Take a look at that second <ul>. You've got an un-nested <p> tag there--it starts before the <ul> and ends before the </ul>. Actually, that <p> is extraneous, so you can just delete it...