I came across this site, from the same provide that I found some good stuff for HTML. This is a great tutorial set up to help beginners like myself get a better idea for 'STYLE'
Never knew this site had tutorials in all the years I've gone to it. The "font" section looks like it'd be especially helpful when doing the challenge to spruce up your recipe page. Good luck.
This gives you everything you basically need to know about HTML tags, which is what separates one section of code from another. This will be a useful reference for those who are still confused about how to write legible code.
I figured I would use this 3-page site to tell a little more about myself (and, hopefully, make you laugh a little bit). It is very simple, but it should give you a little more insight into what you're dealing with.
Hahaha. Thanks, man. We made 3 that day (the third went to my nephew for XMas), and they give them to you in clear plastic bags. So The best part of the whole experience was the reaction from people I passed on the streets of Manhattan!
What coding did you use to place the 3 hyperlinks next to each other, across the top? I'm going to do my 3-page site now, but will most likely leave them vertically.
This shows how to set up style sheets so you don't have to reinvent the wheel every time you want to design an element similar to what you did last time. This makes it easier for type, color and other elements to have a continuity and to feel more cohesive. It also saves valuable time if you know you are going to use a certain design style over and over.
Here is a 4 page site I made for upcoming Connecticut concerts for the month of February. I included a splash page that includes links to Toad's Place, Mohegan Sun, and The Webster. On each of the 3 venue pages, I included links to the venues' official website as well. Then, I included text about upcoming concerts. I purposely didn't link back to the splash page, thinking that once the user is into the venue sites, it wasn't necessary to return there.
This site has it all. I found it to be a very useful resource when trying to restyle my recipe. It has both, HTML and CSS information. Check it out when you can.
Nice work here. A couple of suggested improvements. First, you should avoid using the center tag, but if you do, it should be inside the "body" tag--generally nothing comes between the HTML tag and the head tag. Also, you're missing your body :).
However, it meets the requirements for the assignment, and looks good doing it.
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.