
I want to say one thing about browsers. While I don't want to leave anyone out, web pages, are controlled by browsers, in a sense, and right now Netscape and Explorer control somewhere between 90%-98%. I have made all my pages with netscape 3.01 and feel all the latest browsers can easily handle these pages. Probably a full 85%+ can view my pages with no problem. I will try to do somethings for text browsers as I can, but in all reality I feel people should upgrade if they want to keep up with the web.
I do not intend to teach a formal course on html code here, instead I will focus on 'how to' write the code and what it will do for you.
The first thing you need is an editor. Basically I just need one to write code on. If you have Netscape Gold, you have an editor. If you're using windows you can use notepad. Simply go to windows notepad and open a new file. Save it as 'whatevername.html' or 'whatevername.htm' and you got it. For teaching purposes, I will set this up as a demonstration page so that you can compare what your code looks like to what I set it up as. In that way you will be able to gauge your understanding.
We will start with the basic code needed for a web page.
The first thing you need to know is whatever you open"< >" you must also close"< />" A web page is set up with 4 basic codes. These codes are
< html>
< head>
< title>
< /title>
< /head>
< body>
< /body>
< /html>
Leave no spaces between the letters and symbols you type. press the enter key at the end of each line.
Save this file as 'yourname.html' in the Newhtml. At this point if you look at the page you just created with your browser, you would see nothing. That's because html tags are invisible to viewers. To see them in Netscape click on the word view at the top of Netscape, click document source, then you can see what you just printed.This will work throughout the web. You can view the code used to make any page.
![]() |
![]() |
![]() |