Forum Moderators: open
Yea, dumb question but it's had me stumped not knowing html that much.
Thanks for any replies:)
<head><title>TITLE OF YOUR PAGE HERE</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="description" content="A BRIEF DESRCIPTION OF YOUR SITE HERE.">
<meta name="keywords" content="A LIST OF KEYWORDS RELEVANT TO THE PAGE CONTENT HERE"></head>
Is that what you meant? If you switch to HTML view in FP you can edit these by hand. If your concerned about messing things up make a backup first.
Cheers
Stretch
Thanks for the reply. I didn't mention, I'm looking at H1 tags and the like. I'm trying to optimize important decriptions or page content on the page, where so far I've only used them in bold fonts. The largest reason is for viewers to get an idea of the page content right away. From my understanding these are important to some search engines and I'd just like to know how to work them in.
Current example:
<p align="center"><u><b><font face="Arial" size="4">Searching For Information About Widgets?font></b></u></td>
You should export the CSS to an external file and call it with instructions in the <head> section of the HTML file. Most people use this one, but it can cause problems:
<link type="text/css" rel="stylesheet" src="/path/file.css">
It is better to use this slightly longer version of this, again placed in the <head> section of the HTML file:
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css">@import url(path/file.css);</style>
This version hides the CSS from older versions of Netscape that cannot handle CSS. This stops those versions from displaying a corrupted page with overlapping elements.
Run the code through a validator to check the HTML and CSS for errors:
HTML: [validator.w3.org...]
CSS: [jigsaw.w3.org...]