How To Create A Web Page | ![]() |
|
This HTML introduction was prepared for the CCSD Librarian’s Workshop on June 12, 2001 by Watson Elementary School's Teacher-Librarian, Mr. Dwyer. Since this web page is designed to be a companion to the workshop, it may be difficult for you to actually create your own site using this source alone. Eventually however, if you know already something about HTML or if you have a good deal of experience with computers in general, this site should prove to be very useful. The author can be contacted through e-mail or Interact if you have any questions, suggestions or corrections. | |
Document Directory: | |||
| The Introduction | 1. Create a Folder | 2. Open a Text Editor | |
| 3. The Essential Tags | 4. The Formatting Tags | 5.See What You’ve Created! | |
| 6. Images / Graphics | 7. Links | 8. Image Processing | |
| 9. File Transfer Protocol | 10. Zippers | 11. Miscellaneous | |
| 12. So What’s Next? | 13. Example HTML Document | 14. HTML Document Results | |
<BODY BGCOLOR=“#FFFF33”> <BODY BACKGROUND=“filename.gif”> Not that this looks tasteful, but the background will now be red and all text will be blue. #FFOOOO is the hexadecimal code for red and #324395 is the code for blue. <FONT color=“#178069”> I love HTML so much that I’m going make my own web site!</FONT> example 2 HTML:<H1 ALIGN=“MIDDLE”> The Middle Road is the path to take. </H1> example 3 HTML:<FONT COLOR=“#FFFFFO” SIZE=“6” ALIGN=“LEFT”>This text leans to the left.</FONT>example 3 results: This text leans to the left. 7. Links <A HREF=“web site’s URL”> This is where the text goes that people will click on to move to another site. Sometimes, the URL (Uniform Resource Locator) or name of the site goes here. </A> example: <A HREF="http://starwars.com/">Official Star Wars Site </A> <A HREF="web site URL"> <IMG SRC="graphic’s file name" ALT="name of the web site"> </A> example: <A HREF="HTTP://CCSD.NET"> <IMG SRC="CCSDlamp.gif" ALT="Clark County School District logo"> </A> 9. FTP (File Transfer Protocol) 10. Zippers To use software such as Magic View or LView, you may need a program called a zipper -or unzipper as the case may be. Zippers compress large files into smaller ones. This makes them easier to send over the Internet. Once such files arrive at their destination, they need to be unzipped to use. You can find a great one by CAM UnZip that’s free at: 11. Miscellaneous <HTML> <IMG SRC="vader.jpg" ALIGN="RIGHT" ALT="Our Principal is our Mascot!"><H1 ALIGN="CENTER"> <FONT COLOR="#3399FF">Welcome to<BR> Fictitious Elementary School!</FONT></H1> <FONT COLOR="#000099" size="5" ALIGN="LEFT"> Fictitious Elementary School is an oasis in a desert. We are in the heart of Las Vegas, just two minutes from 'the strip.' Our school of approximately 950 students looms in the shadow of the magnificent Stratosphere Tower, the tallest observation tower in America. Our school is a great place to learn and work.</FONT><P> <FONT size="4"><ALIGN="RIGHT">Here’s a picture of our school. <B>This picture was take during the daytime. </B>Day comes after night, or is it night that comes before day?<I> Anyway, this is a picture of our front office.</I></FONT><P> <IMG SRC="NewJSPfront.jpg" ALIGN="RIGHT" ALT="Photo of the front of our school"><BR> <FONT COLOR="#CC6600" size="5" ALIGN="LEFT"> These words are here to fill up this space. You might believe that these words are actually saying something but they're not. I could have just written blah blah but I chose not to. Do you think these words are saying anything significant? I don't. <U>You believe me on this, right?</U></FONT><BR><BR><BR> <H3 ALIGN="CENTER">We hope that you've enjoyed your visit to Fictitious. Thanks for visiting. <I>Yall come back now ya hear!</I> </H3> <ADDRESS>This page was created by Joe Schmo. JoeSchmo@netscape.net While it was birthed in 3000 B.C., it was last updated June 12, 2001. </ADDRESS> </BODY></HTML> Below you will find what the above HTML document looks like when a browser opens it (minus the HTML, TITLE, & HEAD tags). If you would like to see it as a whole, true web page (with the HTML, TITLE and HEAD tags) click me.
HTML (HyperText Markup Language) is a type of code that tells web browsers like Netscape and Microsoft Internet Explorer how to display text and graphics. It also helps navigate the WWW (World Wide Web) through hyperlinks. The Internet was invented by Al Gore. (Just kidding) Actually, techies in 1989 came up with the framework for HTML.
1. Create a Folder
Create a folder that you’re going to use for all of your web site’s things. If it’s on the hard drive, you will be able to access it faster than with a floppy. Once you’re where you want to put it, click on File, New, Folder. Give it a good name.
2. Open a Text Editor
Open up a new document in a text editor such as Notepad (Windows) or SimpleText (MAC). To find Notepad, click on the Start button on the lower left hand corner of the screen. From there, click on programs, accessories and finally Notepad. Once you’ve opened Notepad, select “Word Wrap” which you will find under the “Edit” menu. This will make your document much easier to read.
3. The Essential Tags
Tags are the vehicle that HTML uses to instruct web browsers on how to show text and graphics. Tags are simple commands beginning with “<” and ending with “>.” These characters indicate when a tag’s instruction begins and ends. You will need the following essential tags in all HTML documents.
4. Formatting Tags
http://www.visibone.com/colorlab/
http://www.iboost.com/build/reference/1045.htm
5. Now See What You’ve Created!
example 1 HTML:<H1>This is the largest heading size</H1>
example 1 results:This is the largest heading size
example 2 HTML:<H6>This is the smallest heading size</H6>
example 2 results:This is the smallest heading size
To change text size or color, use the FONT tag. The larger the number that’s in the tag, the larger the text size. 4 is a typical size. For text colors, use the same hexadecimal code that you would use with the background. Below you will first find the coding and second the actual HTML interpretation.
I love HTML so much that I’m going make my own web site!
example 1 HTML:<H1 ALIGN=“RIGHT”> George Bush leans to the right. </H1>
example 1 results:George Bush leans to the right.
example 2 results:The Middle Road.
There is a cycle to creating a web page. First, create the initial document in Notepad. Save your document to the hard drive or a floppy with the extension html. For example, if you wanted to call your file testfile, you would need to write testfile.html If you leave off the file’s extension and only write testfile, it will not become an HTML document but rather a Notepad file. After this, open the document in your browser. With Netscape, this is done by clicking on File, Open Page and Choose File. From there, navigate through the directory to find your file. Finally, click the Open button. Whaa-la! Ooooh, Aaaaah!
When you’re opening up an HTML file that you previously saved, the Notepad menu will not find it initially because it is by default looking for a text file and not an HTML file. What you need to do is go to Files of type: and click on the drop down menu to select All Files (*.*). Only then will all HTML files appear.
6. Images / Graphics
IMG SRC is an abbreviation for image source. This is used to add JPEG (pronounced jay-peg) and GIF (pronounced jiff) graphics into your web page. IMG SRC’s side kick is “ALT.” ALT is used to describe or label the image. This is used so that people viewing your site with non-graphic settings can still appreciate your page. If you don’t want anything to be in the ALT tag, just leave the quotes with nothing written in between. Again, use ALIGN to tell the browser where to put your image.
Below this paragraph is a sample IMG SRC tag for a JPEG image. Below the HTML code, the result is displayed -the desired photo. Using the mouse, place the arrow over the photo to see what's written in the ALT tag.
<IMG SRC=“filename.jpg” ALT=“Description of graphic.”>
For library specific graphics, visit the following three sites:
To save an image that you’ve found on the web, right click on the image itself and select Save Image As. Choose the path and put it in your web site folder. Give it a simple and short name. Finally click on Save.
<A HREF=“”> </A> These are the things that make the web ‘work.’ When it comes to the WWW, links are the mechanism that connect and intertwine the whole thing together. Links allow you to jump from one web page to another. With links, a visitor can jump from one page to another within your site. Somebody can also jump from from your site to another. From your site, someone could even visit jumptheshark.com or the Clark County School Library Association’s site!
8. Image Processing
<A HREF=“filename.html”> This is where the text goes that people will click on to move to your other page. </A>
result: Official Star Wars Site
You will eventually want to customize your images. With the right software, you can crop, flip, rotate, enlarge, shrink or add text to an image whether it be a photo or custom made image.Windows comes with Paintbrush. While it does some useful tasks, it has limited features. MagicViewer on the other hand, is an effective piece of graphic software that at around $30.00 costs far less than Photoshop, which starts at $600.00. It is simple, light and friendly to use. If you download it straight from the net, you will need an unzipper (see no.10) to open the files. Otherwise, they’ll mail you a copy. Below is the link to the MagicViewer web site. http://www.crayonsoft.com/
In order to create and maintain a site, you will need to send files back and forth to the District’s main computer on Flamingo that hosts all CCSD web pages. You can update your web site files instantly from school or home. You will need FTP software. LapLink offers an excellent FTP that is free. You can search for the free version at http://laplink.com/ or go straight to:
http://laplink.com/products/llftp/overview.asp
http://laplink.com/products/llftp/overview.asp
12. So What’s Next?
& n b s p ;
There are many additional tags, tricks and techniques to using HTML. Once you master the basic tags, you’ll be ready to use more advanced ones since the rules never change. For example, you can create lists (numbered and unnumbered), play sound files (midi files or your own recordings), insert feedback forms and there’s a neat way of organizing on-line info into something called a table. Here are some excellent on-line tutorials that will support this document and provide additional information.
13. Example HTML Document
Below is a complete, Internet-ready HTML document. Below the coding, you will find what the below code looks like through a browser.
<HEAD>
<TITLE>Fictitious Elementary School</TITLE></HEAD>
<BODY BGCOLOR="#FFFF66">
Welcome to
Fictitious Elementary School is an oasis in a desert. We are in the heart of Las Vegas, just two minutes from 'the strip.' Our school of approximately 950 students looms in the shadow of the magnificent Stratosphere Tower, the tallest observation tower in America. Our school is a great place to learn and work.
Fictitious Elementary School!
These words are here to fill up this space. You might believe that these words are actually saying something but they're not. I could have just written blah blah but I chose not to. Do you think these words are saying anything significant? I don't. You believe me on this, right?We hope that you've enjoyed your visit to Fictitious. Thanks for visiting. Yall come back now ya hear!
This page was created by Joe Schmo. JoeSchmo@netscape.net While it was birthed in 3000 B.C., it was last updated June 12, 2001.
Home | The Introduction | Literacy Standards | Online Libraries | HTML for Librarians | Become a School Librarian | The Library Calendar | Membership | Vendors | The Links Page
