Need Some Html Help For A Title That Won’t Show Up!?
New Updates
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.
How Do I Change The Line Height For My H1, H2 Ttags Etc?
In Dreamweaver, when I assign a heading tag to a word or title, it takes it out of the paragraph and moves everything else below. I undederstand why it does this- cos it thinks it should be a title.
But I want it to stay inline with the rest of the text. How do I edit this?.... More »
What Type Of Header Tag Do I Use If All Page Items Are Equally Important?
I have a page where I am listing the names of a couple of different dog species. I used h1 for the page name which is "Guard Dog Species". But I don't want to use h2, h3, h4 for the actual dog species titles because that makes h2 seem more important than h3 when all the dog species names are of equa.... More »
Search Engine Optimization?
Does it help if I have identical keywords in the meta title tag AND h1 tags?
I am trying to optimize for SEO and Google Adsense..... More »
How Much Does Site Maturity Impact Seo? Should I Register My Site Before It's Complete For Seo Purposes?
How much does site maturity impact SEO? Should I make an "under construction" page and register my site with search engines before it's up and running for SEO purposes?.... More »
What Is The Seo Opinion Of Interstitial Ads?
Does anyone have any facts or guidance on the SEO impact of using interstitial ads? They appear on a number of "big budget" sites like top-tier newspapers, magazines and video sites yet my guess is that Google and others would take a less favorable view of small sites using these ads. They are quit.... More »
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>
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!
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.