Frames What are Frames? Frames basically split your window in to sections. You can display two or more web pages at a time with frames. You don't necessarily have to have whole pages in a frame. You could just have graphics, too. If you are really interested in putting frames on your page, I recommend that you go here to Sharky's Netscape Frames Tutorial and read the lessons. Java What is Java? Java is a simple, robust, object-oriented, platform-independent ...
Tuesday, January 14, 2014
How to create a Web Page ( Tutorial 5 )
Fill-out Forms Getting Started Fill-out forms let a reader return information to a Web server for some action. For example, suppose you collect names and email addresses so you can email some information to people who request it. This processing of incoming data is usually handled by a script or program written in Perl or another language that manipulates text, files, and information. If you want to, you can write this program yourself, but I have no idea how to do it. I would check with ...
How to create a Web Page ( Tutorial 4 )
Graphics Putting Images On A Page On almost EVERY web page on the net, there is some kind of graphic. I would HIGHLY RECOMMEND that you have AT LEAST one picture on your page. There are mainly two kinds of ways to have graphics on your web page. The first, is to use a graphic that is on another web page somewhere on the web. The second, is to upload the graphic to your own account. ...
How to create a Web Page ( Tutorial 3 )
Linking URLs When you make a link, you are making colored text or even a graphic (talked about later). When somebody clicks on this text, it will take them to another web page, or possibly a certain section of a web page. Let's say that you wanted to make a link from your web page, to Yahoo!. The URL of Yahoo! is:http://www.yahoo.comTo do this, you would type: <A HREF="http://www.yahoo.com">What ever text that you want to be colored goes here</A> The result would be: What ever ...
How to create a Web Page ( Tutorial 2 )
Text Headings HTML has six levels of headings, numbered 1 through 6, with 1 being the largest. Headings are displayed in larger, or smaller fonts, and usually bolder. If you wanted to type "Hello", this is what you would type for each heading, and what the outcome is: <h1>Hello</h1> Hello <h2>Hello</h2> Hello <h3>Hello</h3> Hello <h4>Hello</h4> Hello <h5>Hello</h5> Hello <h6>Hello</h6> Hello Paragraphs Whenever ...
How to create a Web Page ( Tutorial 1 )

This page explains everything that is needed for anyone wanting to create their own web page. Below this paragraph is the table of contents. Click on any of the content subjects and it will take you to that section of the guide. To return to the table of contents at any time, click the "Return to Index" link in the frame on the side of the page. I hope this guide is helpful. Getting ...