HTML语言指南-毕业论文外文翻译.doc
中英文翻译HTML Tutorial - PrefaceHtml is one of the easiest languages to learn. This tutorial will explain how to write Html webpages, what Html is, and how to program in Html. Html stands for HyperText Markup Laguage.The only use for Html is for writing web pages. A web page is really a program, only a very simple one. What is easy about HTML is that: 1. There is no compiling, and 2. It is simple coding only. There are no functions, loops. "Bugs" are almost impossible to make and easy to fix.To use Html, you can of course use an Html wizard program which would defeat the whole purpose of this tutorial, or you can use a simple text editor, save the text as an .htm file (or .html for a Macintosh), and view it with your browser, such as Netscape or Microsoft Internet Explorer. This tutorial is being written in ordinary Notepad, so you don't need anything special. If you do not already have a web browser, you can download: Netscape at MSIE at HTML Tutorial - Chapter 1 Tags, and the Skeleton LayoutBefore anything, HTML is written in tags. Tags are like the command words that make up the language. A tag is written like this: <tag>. An example tag would be <bold>, <html>, <title>, <hr> and others. The entire code is made up mostly of tags, tags tell the web page what to do. Sometimes a tag starts something, like for instance <bold> will make all the text after it turn bold. Or <title> will make anything after it become the title. But in some instances, like section tags, you will need to end a tag. For example, say you use a <bold> tag before a text. That's all fine and well, but everything after the bold tag will become bold. The entire page. You may only want to make one world bold. Therefor you must "end" a tag which will stop it's actions. To stop a tag you use this format: <tag> For example: <bold>This is bold!</bold> This isn't! You'll learn more about other tags in the chapters to come. One good thing about HTML is that it always follows one layout. The following layout is an entire Html web page: <html><head><title>This is the Title!</title></head><body>Welcome to my Web-Page!</body></html>This is the basic code, called a skeleton layout. You should always start your Html code in that way. Now lets explain some of the tags. The tags you saw in the example are used only once usually. Here is just an explanation of the layout tags. Each tag in the skeleton layout starts or ends a section. A section in Html declares when a certain part of the Html code is beginning. <html> - Starts the Html section. (Begins the page)<head> - Starts the Header section. <title>This is the Title!</title> - Starts (and ends) the title section.<body> - Starts the Body section. (Main part of page)</body> - Ends the Body section.</html> - Ends the page.The Html section contains the entire code. The Header section contains the Title section, and some other stuff. The title section contains the text that goes in the title bar at the top of the browser window, like "'Welcome to My Page!' -Netscape." The body section is the main part of the page that contains all the text that appears in the page. HTML Tutorial - Chapter 2 Body AttributesThe Body tag has more to it than just <body>. The <body> tag also controls the color of the page text, the background of the page, and others. An attribute to any tag (in this instance, it will be the <body> tag) is an extra keyword that can be set inside the tag that allows for certain things to be set. To set a body attribute, like the background of the page, you simply include the option in the <body> tag and what it is set to. Example: <body BGCOLOR="blue" text="black" link="yellow" alink="green"vlink="white"> There are a few body attributes that you will learn for now. Background, text, link, and active link. The Background is controlled with either BGCOLOR="color" or BACKGROUND=" If the Background you want is a solid color, like black, blue, white, red, etc, you use the BGCOLOR option. BGCOLOR accepts BGCOLOR="blue" (a color name), or BGCOLOR="Hexadecimal number." A Hex number can do more variant colors, such as gold, turquoise, navy blue, and most other colors, while just typing a color name like blue or white is limited to simple colors. A few simple colors are blue, white, black, green, yellow, orange. Mostly first, secondary, and tertiary colors. The BACKGROUND option is for if you want to use a picture as a background. You must use the URL of the picture, like: <body BACKGROUND=" Graphics in any web page must be in either GIF (.gif) or JPEG (.jpg) format. The next option is text. Text is the color of all normal text in the page. It follows this format: text="color" or text="hexnumber." This follows the same routine as inBackground; a color name will accept simple colors, a hex number can do more exotic colors. The next option is link. This is the color of all links on the page. It's format is the same as the text option. The next is alink. This is the color of a link that is being clicked on. For example, ifthere is a link to and you click on it, until you let go, that linkwill turn to the alink color. It follows the same format as the text option. The last option you will learn is vlink. Vlink sets the color of all links that have been visited in the past. It follows the same format as the text option. NOTE: If you leave out an option in the Body tag, it will be set to a default color. HTML Tutorial - Chapter 3 Text TagsNow that you've learned body options, you can now learn how to add text to the body section, and how to make it look FuNkY! Before, you learned a little about tags and how they work. Tags are important to text because they can change the way text looks, and acts. Lets take a look at an example to learn a few basic tags. <html><head><title>Text Example</title></head><body BGCOLOR="black" text="white"><p>This is my first, ordinary paragraph.<p><b>This is my second, bold paragraph.</b><p><i>This is my third, italics paragraph.</i><p><u>This is my fourth, underlined paragraph.</u><p><blink>This is my fifth, BlInKiNg paragraph.</blink><center>This is my last, centered paragraph.</center></body></html>The <p> tag stands for paragraph. It starts text on a new line. Without <p>, all the text would be in one line and wrapped around, and it would look pretty messed up.In the second paragraph, there was a <b> (or <bold> for full) tag. Bold makes all text inside of it become bolder. As you learned before, some tags need to be ended. This is one of them. If you didn't end a bold tag, everything after the <b> would be bold, even text that you didn't want to be bold. To end a tag (stop what a tag is going, use this format: </tagname>. Thus, to end a bold tag, you use </bold> (or for short, </b>). <i> stands for Italics. Anything after <i> and before </i> will become italic, or slanted. <u> stands for underlined. Anything after <u> and before <u> is underlined. <center> sets the alignment for text. You could also center text by using <palign="center">Centered Text</p>, but <center> is a lot easier. Center makes textgo in the center of the screen. You can also use:<p align="left">This sets alignment to the left.</p><p align="right">This sets alignment to the right of the screen.</p> NOTE: If you use <p> option, like to set alignment, in order to stop it's effect you must end it, by using </p>. <blink> makes text blink repeatedly. Be careful not to overdo the blink tag, as it can tend to get very annoying. Here are a few more text tags with brief explanations. You can experiment withthem: <tt> - Teletype<pre> - Predefined. HTML usually ignores extra spaces which can be bad fordocuments which depend on independent formatting.<big> - Makes text generally big.<small> - Hm.<s> - Strikethrough, makes a horizontal line through the center of the selection.<su> - Superscript.<font> - Controls font, and can also make text bigger than possible with just <h1>.I.e. <font face="Fontname"> or <font size="7"> <font color="color"> <fontcolor="#hexcol">. <font face=""> means the actual font, like Courier.It is also possible to combine tags on text. For example: <i><b><u>This is slanted, bold, and underlined!</i></b></u> Now you will learn how to change the size of text. It follows the same format of <bold> or <italics> <tag>Modified text</endtag>, and they too can be combined with <bold> <italics> or whatever as a combination: <html><head><title>Text Sizes</title></head><body BGCOLOR="black" text="white"><p><h1>This is HUGE!</h1><p><h2>This is big.</h2><p><h3>This is a little large.</h3><p><h4>This is normal.</h3><p><h5>This is quite small.</h5><p><h6>This is TINY.</h6>To modify text size, as you saw, the tag is <h(1-6)>Text</h(1-6). Text sizes range from 1 to 6, 1 huge, 6 tiny. These tags can be combined with <bold> or <italic> or what have you, so that you could get a huge, bold, italic, and underlined text. A few tags don't modify text, but they do put something into the body, such as a line. To put a line, which can nicely seperate a section on your page, like if you had a table of contents and a story paragraph. To put in a line, use <hr> anywhere you want. Example: <html><head><title>A line!</title></head><body BGCOLOR="black" text="white"><p>Section1<hr><p>(Seperated) Section 2</body></html>HTML Tutorial - Chapter 4 ImagesNo page is a page without images, or graphics, Images give an entire light to a web page, not to mention setting the atmosphere for the page. Images are quite simple. Any image must be in either JPEG or GIF format. To put an image in a page, here is an example: <html><head><title>Graphics!</title><body BACKGROUND="<p>This page has graphics!<p><img src="<p><img src="</body></html>A few rules of images:#1. When linking to ANY URL (such as you must ALWAYS have http:/ unless the picture is in your web site server. If it is a local picture, (in your server account), the link can just be puppy.gif or kitty.jpg. #2. The general primary formats for web graphics are GIF and JPG. Some browsers (like IE) might support things like BMP, and newer browsers have limited support for the PNG format, but to be sure, it's a safe bet to use GIF or JPG image files. #3. Pictures can be formatted in a few ways. Two text tags can format a picture, <p> and <center>. If you want to start a picture on a new line, or center it, you can use <p> or <center> to do so. <img src> tag has a few options to change the size of a picture, if you wanted to make a thumbnail sized preview of a picture for example. The format is <img src="height="pixelnumber" width="pixelnumber>. #4. Pictures must be uploaded onto a server. Just because a picture is on your computer doesn't mean that everyone can see it. It has to be on a webserver, otherwise only you will be able to see it. HTML Tutorial - Chapter 5 Linking PagesIf you want to have multiple pages, or want to link to a favorite site of yours, you must place a link in your page. A link is easy to do: <a href="http:/adress">Click here to go!</a> Anything between the <a href> tag and the </a> tag becomes a link. When you click on a link, it takes you to the page. Here are some examples: <p><a href="">Yahoo!</a><p><a href=" page!</a>Note: In the address part of <a href>, the http:/ is required unless you are linking to a page on your site. If you have a page called myhobbies.html in your web page directory, you can do something like <a href="hobbies.html">My Hobbies!</a> The following will not work:<a href="">Yahoo?</a> The same goes for linking pictures in chapter 4 You can make pictures link to sites as well:<p><a href=" src="apicture.gif"> Some browsers automatically place a border around images that are links. To disable this, put border=0 in the tag. HTML Tutorial - Chapter 6TablesTables are effective in making graphical or text presentations look sharp. It can nicely organize a list of data. They form boxes around whatever you want and can split into smaller sections, called cells. To start a table you begin with a tag, <table>. <table> declares a few things about the table. The things are defined by using them as options in the tag. For example,<table width=4 height=3 cellspacing=4 cellpadding=5 border=3> In a table a cell is a square in the table that contains html code that is confined to that small square. NOTE: The cell size is determined by whats in it. If you have "Hi!" the cell will be small. If you have the entire Constitution, it will be a tad bit longer. Width declares how many cells wide the table is. Height declares how many cells tall the table is. Cellspacing is how much space is between cells, and cell padding is how thick the spacing is. Border is how wide the border is. Border=0 means no border. Now you must make the cells. It's very easy. To start cells on a new row, you use the <tr> tag. To make a cell, use the <td> tag. After a row is done, you must </tr>. After a cell is done, you must </td> Rows/Cells should go with the height and width. Example: <html><head><title>Tables!</title></head><body BGCOLOR="black" text="white"><table border=3 height=2 width=2><tr><td>Cell1</td><td>Cell2</td></tr><tr><td>Cell3></td><td>Cell4</td></tr></table></body></html>HTML Tutorial - Chapter 7Forms and ButtonsInteractivity depends on. well. being able to interact and input. Enter forms and buttons. Forms and buttons allow you to put questionaires on your page, find out whose using it, and if you get really good and learn cgi, run programs on your page. For now we'll do the basics because anything advanced would involve CGI a totally different programming language requiring another tutorial. You don't want to get into that right now. The initial tag is <form>. <Form> has somoe attributes that define what the form does. There are 2 attributes you will learn now. Action, and Method. To define an attribute, like any other tag, you use <form action="option" method=option>.Action is the address of what the form does. Mainly it is used for cgi, but there is another use for forms, and that is email comments. A form action can be sent to a mailto address just like in <a href>. So <form action="mailto:pstein"> would send form i