my title doesnt show up

liunx

Guest
Im new at this. This is my first site and im using htmlgoodies.com. I had the sample page done and everything showed up but when i tried to put my own title in it doesn't show up?.. Can someone please explain why.<br />
Im using notepad and its saved as an html document<br />
<br />
<HTML><br />
<TITLE>Alexis Raneigh Blanzy</TITLE><br />
<HR><br />
November 3, 2003 - Febuary 10 2004<br />
</HTML><!--content-->You need to do a bit more learning. Start with this: <!-- m --><a class="postlink" href="http://www.w3.org/TR/1999/REC-html401-19991224">http://www.w3.org/TR/1999/REC-html401-19991224</a><!-- m --><br />
and make sure you get to chapter 7 before going any further....<!--content-->1. Don't use HTML Goodies.<br />
<br />
2. Bookmark <!-- m --><a class="postlink" href="http://www.w3schools.com/">http://www.w3schools.com/</a><!-- m --><br />
<br />
3. Go through at least the HTML and CSS Tutorials.<br />
<br />
4. Check out the W3C validator link in my signature.<br />
<br />
EDIT:<br />
<br />
4B: Click on the Doctype link in my sig too.<br />
<br />
5. Make sure you validate any of your examples as it could solve an issue you are having, or it will at least save us from having to tell you to make sure you do have valid code.<br />
<br />
6. Part of your problem is the fact that you aren't using the <head> tag where the <title> tag belongs inside of.<!--content--><HTML> <br />
<HEAD> <br />
<TITLE>Alexis Raneigh Blanzy</TITLE> <br />
</HEAD> <br />
<BODY> <br />
Alexis Raneigh Blanzy <BR><br />
or <BR><br />
<H1>Alexis Raneigh Blanzy</H1><br />
<HR> <br />
November 3, 2003 - Febuary 10 2004 <br />
</BODY> <br />
</HTML><br />
<br />
JayDie<!--content-->
 
Back
Top