I've created a web page, but when I open the file in my web browser I see all the text including theHTMLtags. Sometimes I even see weird gobbledygook characters at the top of the page! What did I do wrong?
A1:
Just type your HTML files in Notepad or TextEdit instead and everything should work just fine. (Also, always make sure that the filename of your web page ends in .html or .htm.)
I have thisHTMLweb page on my computer now. How do I get it on the Internet so that everyone else can see it?
A2:
Hour 4, "Publishing Your HTML Pages," explains how to put your pages on the Internet as well as how to get them ready for publishing on a local network or CD-ROM.
"Fred's Fresh Fish" to appear both at the top of my page and on people's bookmark (or favorites) lists when they bookmark my page. How can I get it to appear both places?
A3:
Make a heading at the top of your page with the same text as the title, like this:
<html>
<head>
<title>Fred's Fresh Fish</title>
</head>
<body>
<h1>Fred's Fresh Fish</h1>
...the rest of the page goes here...
</body>
</html>