INSTANT ACCESSfree SEO report

Need Some Html Help For A Title That Won’t Show Up!?

Ok I have this final project I’m working on and I have to have a title in my html. However everytime I try to insert a title tag I not only do not get a title, I lose the first heading. This is what the beginning of the document looks like so far.

Using a Network

How do I insert the title “Web Page Final Project” without losing my heading? Is the tag redundant or do I need it there in order for the page to show up online? My project is due on Sunday and I have everything else figured out so far, except that. I have tried the title tag my instructor showed us but for some reason it didn’t work.

3 Responses to “Need Some Html Help For A Title That Won’t Show Up!?”

  1. March Madness says:

    Do Not use tags around the <h1>, that is very bad practice. Styling should be handled by CSS, :(

    Anyway, Its hard to see whats your doing wrong without the full document.

    *Are you including <body> tags?

    Try this:

    <html>

    <head>

    <title> This text will appear in the browser bar on top

    <title>

    </head>

    <body>

    <h1>Web Page Final Project</h1>

    <h2>Using a Network</h2>

    This is where your paragraph would go

    </body>

    </html>

  2. smallave says:

    Check out the website in the sources I listed, it will teach you all about html syntax and formatting. I'm a little confused by what you are referring to as a "title". If you are reffering to a title as something kinda like the Yahoo logo when you hit the main page, then you want to place it in-between the <body> </body> tags. so that it would look like:

    <html>

    <head>

    <title>

    </title>

    </head>

    <body>

    <h1> Using a Network</h1>

    </body>

    </html>

    But just a FYI, <h1> with is kinda redundant as a H1 heading is already huge! The actually title tags that i have listed are actually the text that you see at the very top of your web browser, they are what web developers refer to as the title. Hope this helps!

  3. gke71 says:

    Title is what appears at the top of your browser/in bookmarks – the Title itself will not appear on the page. Also you're missing a bunch of code before you start your heading tag.

    <html>

    <head>

    <title>Browser Title Goes Here</title>

    </head>

    <body>

    <h1>Main Heading of your Page</h1>

    </body>

    </html>

    That's what you want I think.

Leave a Reply

Contact Us

Member Login

Lost your password?

3 Comments 97 Views