Incendio
05-27-2005, 08:57 PM
HI people.I accidently made 40 or so documents like this:
<html>
<head>
<title>MY TITLE HERE </title>
<link rel="stylesheet" type="text/css" href="style.css">
ICONTENT HERE
I now see I didn't include an end to the head and html (< / head > < / html > [/COLOR] and I forgot the < body > tags. Will this affect my documents?
Because I really don't want to go through 40 documents to add some tags.
If it makes a big deal, then how should I set up these tags: [SIZE=1] < body > < head > < html > ?
Thanks for your time!
Monkey Bizzle
05-27-2005, 09:03 PM
it could affect it in other browsers... you really should take the time to go back and fix your mistake.
Cherchezlafemme
05-27-2005, 09:04 PM
Uhm ok lol I don't know what made you think you couldn't add those, because it's a given. You have to have those and html page is like a letter. If you don't have a body in the letter, what's the point of it? All html pages should have these tags in the following order...
<html>
<head>
<title>title</title>
</head>
<body>
content
</body>
</html>
If you're adding internal style sheets you'll need <head></head>
you're going to have to add those tags if you want to see the content...
Incendio
05-27-2005, 09:04 PM
it could affect it in other browsers... you really should take the time to go back and fix your mistake.
OK. Thanks.
I have a question, where should the link to the style sheet go? Between the head and the body?
Edit: Sorry I dind't see your post. To me it wasn't given. Because so far it's worked for me, I guess that was why I didn't notice my mistake. :(
So, absolutely everythign goes between the body? Even all the codes and scripts?
I'm still confused with these basics I really should already know ... :/
Cherchezlafemme
05-27-2005, 09:05 PM
OK. Thanks.
I have a question, where should the link to the style sheet go? Between the head and the body?
read my reply...
Incendio
05-27-2005, 09:06 PM
Yes but I didn't see it at first. We posted at the same time. It's not that I ignored it, it's just that I didn't spot it because i was writing a message.
Monkey Bizzle
05-27-2005, 09:27 PM
Incendio, most codes go between the <body> tags however there are some "behind the scenes codes" if you will, that go in the <head> tags... Such as <meta>, <style>, and most <script>. There should NEVER be anything between the </head><body> tags or the </body></html> tags... or after the </html> for that matter. :)