AY WEB DESIGNING TUTORIAL
WELCOME TO AY WORLD
ABOUT
PHOTO
BEST OF FOOTBALL
CONTACT
FAVORITE LINK
My Photos
My Files
Blog
HTML TUTORIAL
| |
|
| Fonts and Text |
| <HTML> |
| Accents <I></I> - Italics <EM></EM> - Emphasis, Emphasize the text <STRONG></STRONG> - Strong - Strongly emphasize the text <U></U> - Underline the text (Is not recognized by Netscape Navigator 2.0) <CENTER></CENTER> - Center the text on the page <STRIKE></STRIKE> - Strike Through Text |
| <P><FONT SIZE=2 COLOR=#800000 FACE="Arial"><B><STRONG><EM>This is proper nesting</EM></STRONG></B> <H1></H1> - Heading of the first priority <H2></H2> - Heading of the second priority <H3></H3> - Heading of the third priority <HR SIZE=5> - Horizontal Rule (Size= 5 Pixels in Height, You can specify any size) <P ALIGN=RIGHT> - Paragraph Align - You can align Paragraphs to the left, right, and center |
Lists
|
This is an "Un-ordered List"
|
| This is a "Definition List" |
An example of an "Ordered List"
|
| Images |
| |
| Don't be fooled by the term "Photo Quality". On the Web photo quality is not necessarily the best way to go. It's all a matter of memory space and download time. You don't want a simple image to take several seconds to a minute to download, you will lose your visitors. On the Web, small is better. |
| Links |
| All that other stuff was pretty cool, but now we're getting to the Fun part! When you get done with this section you'll be able to put links, links, and more links! all over your web pages! That's right! Keyword being pages. Up until now you've been limited to the current page you were working on, but shortly you'll be completely unrestricted and have virtually unlimited access the world! |
| <A NAME="MyAnchor"></A> |
| |
| |
| |
| |
| |
| | ||||||
| Tables | ||||||
| I put the "Tables" section toward the end of this tutorial because they are rather complex to understand at first, they take longer to work with, but tables are the most versatile and useful of all these HTML tags. There are many tags and variable attributes that you can use within the "<TABLE>" & "</TABLE>" tags. But first, a quick run down of just the basics. (Inside a TABLE. | ||||||
| ||||||
| This exmple is the minimum requirements for your table to work. It shows a simple Table with one Table Row, and one Table Data cell that is presently empty. | ||||||
| Fire up that old text editor and create your first table page something like this: <HEAD> <TITLE>My First Table Page</TITLE></HEAD> <H1>My First Table Page</H1> <TR> <TD><FONT SIZE=3 COLOR=#FF0000 FACE="Arial">This is my text in a Table Data Cell</TD> <TD><FONT SIZE=3 COLOR=#00FF00 FACE="Arial">This is my text in my second Table Data cell</TD> </TR> </TABLE> </HTML>
<HEAD> <TITLE>My First Table</TITLE></HEAD> <BODY BGCOLOR=#00EEEE> </HTML> <HEAD> <TITLE>My First Table</TITLE></HEAD> <BODY BGCOLOR=#00EEEE> </HTML> <HEAD> <TITLE>My First Table</TITLE></HEAD> <BODY BGCOLOR=#00EEEE> </HTML> <HEAD> <TITLE>My First Table</TITLE></HEAD> <BODY BGCOLOR=#00EEEE> </HTML> Add Spacing and Padding to your table data cells. <HEAD> <TITLE>My First Table</TITLE></HEAD> <BODY BGCOLOR=#00EEEE> </HTML> <HEAD> <TITLE>My First Table</TITLE></HEAD> <BODY BGCOLOR=#00EEEE> </HTML> <HEAD> <TITLE>My First Table</TITLE></HEAD> <BODY BGCOLOR=#00EEEE> </HTML> <HEAD> <TITLE>My First Table</TITLE></HEAD> <BODY BGCOLOR=#00EEEE> </HTML> <HEAD> <TITLE>My First Table</TITLE></HEAD> <BODY BGCOLOR=#00EEEE> </HTML> <TH WIDTH="20%" > A</TH> <TH WIDTH="20%" > B</TH> <TH WIDTH="20%" > C</TH> <TH WIDTH="20%" > D</TH> </TR> |
| Frames |
| Get out the old text editor again, grab a steaming hot cup of Java (We'll do java later), this may take a while. <HEAD> <TITLE>Alice</TITLE> (and Carol and Denise, respectively) </HEAD> <BODY BGCOLOR=#FFFFFF> <H1>Alice</H1> (and Carol and Denise, respectively) </BODY> </HTML> <HEAD> <TITLE>Navigate</TITLE> </HEAD> <BODY BGCOLOR=#FFFFFF> <H1>My Frames</H1> <P><FONT SIZE=3 COLOR='000000 FACE="Arial">My girlfriends (Use boyfriends if you prefer!) <BR><A HREF="Alice.html" TARGET=Window>Alice</A> <A HREF="Carol.html" TARGET=Window>Carol</A> <A HREF="Denise.html" TARGET=Window>Denise</A> </BODY> </HTML> <HEAD> <TITLE>Window</TITLE> </HEAD> <BODY BGCOLOR=#FFFFFF> <H1>My Girlfriends!</H1> </BODY> </HTML> <HEAD> <TITLE>Girlfriends</TITLE></HEAD> </HTML> <HEAD> <TITLE>Girlfriends</TITLE></HEAD> </HTML> <HEAD> <TITLE>Girlfriends</TITLE></HEAD> </HTML> <HEAD> <TITLE>Girlfriends</TITLE></HEAD> </HTML> |
| Forms |
| Make yourself a file folder called "Forms". You'll need it for this section. </FORM> |
| <HTML> <HEAD> <TITLE>My Form</TITLE></HEAD> <BODY BGCOLOR=#FFFFFF> </HTML> <HEAD> <TITLE>My Form</TITLE></HEAD> <BODY BGCOLOR=#FFFFFF> </HTML> <HEAD> <TITLE>My Form</TITLE></HEAD> <BODY BGCOLOR=#FFFFFF> </HTML> <INPUT TYPE="text" - indicates that it is a text type of input NAME="email" - names that particular input line so that you know what it is when the email comes to you SIZE="35"> - Declares that the text input line will be 35 columns, or charactors in length. The Submit Button - sends the information to wherever you directed ot to. You can also assign a value that it will start with. Radio Button We'll try the Radio Buttons first. Text Editor time again! <HEAD> <TITLE>My Form</TITLE></HEAD> <BODY BGCOLOR=#FFFFFF> </HTML> <HEAD> <TITLE>My Form</TITLE></HEAD> <BODY BGCOLOR=#FFFFFF> ENCTYPE="application/x-www-form-urlencoded"> </HTML> Johnny Lang=yes B.B. King=yes The tags are <TEXTAREA> and </TEXTAREA> Example: <HEAD> <TITLE>My Form</TITLE></HEAD> <BODY BGCOLOR=#FFFFFF> </HTML> What is your favorite ice cream flavor? <FORM> |

