Home | Starting Off | HTML | Graphics | FTP | Extra | Tools | Advanced |
![]() |
HTML is the most commonly used language on the we for making web pages. If you've already set up a page with an easy editor you'll probably want to skip this section and go onto the next. But you'll probably be back later to find out some more info. Anyways, building web pages is much more efficient when using HTML. It isn't that hard to learn. I have provided some links to tutorials you can find on the web that help you learn the basics of HTML. |
Now that you know a little bit about HTML, let's make your first page. |
1. First open up a text editor like Notepad or Wordpad.
2. At the top, type in this command: <html>. This command tells the browser that it is a web page document.
3. Next, Type in this command: <head>. This command makes the header of the document.
4. Then type in the command: <title>. This shows the beginning of a title.
5. Type a title that you would like for your page, this shows up at the top of the browser window, for now, just type in Hello World.
6. Now you need to end the title, do this by typing </title>.
7. Now, end the head command, do this by typing </head>.
8. Begin the body of the page, this is what shows up on the screen, type in <body>
9. Put a message on your page now, just put Hello World! for now.
10. End the body command by typing </body>.
11. End the <body> command by typing </body>.
12. What you have typed should look like this:
<html>
<head>
<title>Hello World</title>
<body>
Hello World!
</body>
</html>
13. Save it as a file with the extension .htm or .html, for now save it as world.htm. Open up your browser and open up the file. Congratulations you have made your first web page using HTML!
Now that you have started with HTML go to one of the tutorials below to keep on advancing through HTML.
Site: HTML Goodies Rating: 4/5 Description: A good site with HTML tutorials has everything you'll need to know about HTML. I recommend using this one. Location: You can visit their site at www.htmlgoodies.com Site: Developer.com Rating: 4/5 Description: Pretty much the same as HTML Goodies. Location: Click here to go to the pages with tutorials. |
Before you start building you should get some web space on the internet. With your ISP (Internet Service Provider) you should have some space with it. Ask your parents how to access it or ask them to ask your ISP how to access it. Some of this will be covered later in the FTP section. If you don't have any space or your parents won't let you use it, you can get some space on the web. Some good service providers are:
Site: XOOM Rating: 4/5 Description: Fast loading, easy to use, even has an easy editor to build with if your a beginner. Unlimited space. Requires an ad frame along the top though. Location: You need to sign up at XOOM's home page. Editor: Geocities Rating: 3/5 Description: A community based free web space provider. 11 megabytes of space. Requires a watermark, a popup, or if you remove the pop-up a "Geoguide". Location: You need to signup at the Geocities' home page. Editor: Angelfire Rating: 3/5 Description: Another good space provider. Not sure about how much space you get. Requires pop-up. Location: You need to signup at Angelfire's home page. Editor: Tripod Rating: 3/5 Description: Is in the Lycos network as well as Angelfire. Unsure of amount of space you get. Requires a pop-up. Location: You need to signup at Tripod's home page. |
< < Prev. Section | Next Section > > |