Go Back   Netpond ™ > Webmaster Forums and Resources > Webmaster Articles, Tutorials & Information > Startup Guide
Register FAQ Calendar Radio and TV NP Shop Search Today's Posts Mark Forums Read

Startup Guide Helpful articles for new webmasters starting out in the business.

Anal, Ethnic, Pornstar, Shemale
Reality, celeb Video On Demand, Megasite, Gay Leased Content
Reply
 
LinkBack Thread Tools Display Modes
Old 03-07-2004, 10:49 PM   #1 (permalink)
-
Admin
 
Join Date: Feb 2004
Posts: 314
Points: 0
Lesson 3 - Html 2

<table width="93%" border="0">
<tr>
<td width="100%" style="color: #3d3d3d; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: verdana, arial, sans-serif">
Now you have a basic understanding of what an HTML document is....
but how do you go beyond that basic page? Well, before you even
begin to build, you should think about what you want on the page.
How do you want it organized? Who will visit your page? What will
they expect to find on the page? How will they navigate between
pages? Will you connect/link to other pages? What colors will you
use? What kind of images? What kind of font (you might even be
asking --- &quot;what is font anyway&quot? All of these things need to be
considered before you start to build a page. There's even more,
but the &quot;more&quot; is related to design issues and I'm going to stick
to the basic HTML document structure for this short tutorial. Once
you understand how to build a page, then you can start to
experiment with design.<br>
<br>
To begin with, we're going to discuss what goes inbetween the
&lt;BODY&gt; and the &lt;/BODY&gt; tags. This is what makes up the majority of
the page. The &lt;BODY&gt; tag itself can have attributes. That is, we
can tell the browser we want the BODY background to be black or
white or whatever color we like. To do that we specify a color
attribute for the BODY tag like this &lt;BODY BGCOLOR=white&gt; or like
this &lt;BODY BGCOLOR=&quot;#FFFFFF&quot;&gt; The attribute has a value, in this
case the value is &quot;white.&quot; This makes the background color (BGCOLOR)
&quot;white.&quot; Note, in the first example, I used the word &quot;white&quot; and
in the second example I used the hexidecimal value for white which
is #FFFFFF. Either is okay. Attribute values are usually enclosed
in beginning and ending quotes. The rules for using quotes with
attribute values are as follows:<br>
<br>
<b>No Quotes</b> --- It's okay to not use quotes only if the
attribute value is a word or a number using the letters a-z or
numbers 0-9, the special characters hyphen (-) or period (.) For
example &lt;BODY BGCOLOR=white&gt; is the correct way to leave out
quotes.<br>
<br>
<b>Must use Quotes</b> --- You must use quotes when the attribute
value contains several words separated by a comma and/or if it
uses characters other than the hyphen or period. For example &lt;FONT
FACE=&quot;arial, sans serif&quot;&gt; is the correct use of quotes.<br>
<br>
<br>
Personally, I use quotes all of the time. Why? Because if you
leave off an ending quote or misuse a quote, the browser will be
confused and you will end up something you hadn't expected and
have to spend time debugging your HTML tags. A simple omission can
be a headache. Therefore, I just do it.<br>
<br>
Okay, now you have the background color and you're ready for the
rest of the body. To add stuff to your page you use the following
tags after the opening BODY tag:<br>
<br>
<b><u>The Break tag </u></b><br>
The break tag &lt;BR&gt; is an important one. It is a stand alone tag
and does not require a closing/ending tag. It allows you to put
space in between lines of text and/or images. For example, here is
a short poem that I have coded without the &lt;BR&gt; tag.<br>
<br>
<font color="blue">Roses are red, violets are blue, sugar is
sweet, and so are you.<br>
<br>
<font color="black">Here is the same poem using the &lt;BR&gt; tag<br>
<br>
<font color="blue">Roses are red,<br>
Violets are blue,<br>
Sugar is sweet,<br>
And so are you!<br>
<br>
<br>
<font color="black">You can see that in the first example the
words ran together one after another because in coding that line I
did not use the &lt;BR&gt; tag, but in the second example I did use the
tag and the browser interpreted the code, broke the line and
started each sentence on a new line with each &lt;BR&gt;. You cannot
produce a line break by just using a carriage return on the
keyboard, you must use the &lt;BR&gt; tag !<br>
<br>
<br>
<b><u>The Header tag</u></b><br>
Not to be confused with the &lt;HEAD&gt; tag, this is the &quot;HEADER&quot; tag.
This is not a stand alone tag. The text you want in your head must
go between an opening and a closing tag. The header tag creates a
line of text that is of a particular size. I almost never use
these. Here are a few examples:<br>
<br>
&lt;H1&gt; produces
<h1>THIS</h1>
<p><br>
&lt;H2&gt; produces </p>
<h2>THIS</h2>
<p><br>
&lt;H3&gt; produces </p>
<h3>THIS</h3>
<p><br>
<br>
<b><u>The Font tag</u></b><br>
Fonts? Fonts are text, too. Using the font tag you can define the
name or &quot;face&quot; of the font, the size, and even the color. I use
this more than the HEADER tags. The font tag looks like this<br>
&lt;FONT FACE=&quot;arial&quot; SIZE=&quot;3&quot; COLOR=&quot;RED&quot;&gt; THIS &lt;/FONT&gt; and produces
<font color="red" size="3">THIS <font color="black" size="2"><br>
<br>
<b><u>The Anchor tag or Linking tag</u></b><br>
This is called an &quot;anchor&quot; tag. It's used to create links to items
within a page, to other pages, to other websites, or to create an
email link. The code looks like this <br>
<br>
&lt;A HREF=&quot;http://www.netpond.com&quot;&gt;Netpond Resources&lt;/A&gt;<br>
and produces this<br>
<a href="http://www.netpond.com" style="color: #972400; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: verdana, arial, sans-serif; text-decoration: none">
Netpond Resources</a><br>
<br>
An email anchor tag looks like this<br>
&lt;A HREF=&quot;mailto:you@yourISP.com&quot;&gt;Your Name Here&lt;/A&gt;<br>
and produces this<br>
<a href="mailto:you@yourISP.com" style="color: #972400; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: verdana, arial, sans-serif; text-decoration: none">
Your Name Here</a><br>
<br>
<br>
<b><u>The Image tag</u></b><br>
The Image tag is like magic! It's the tag that makes images appear
on your web page. To display an image, the tag looks like this &lt;IMG
SRC=&quot;trc468.jpg&quot;&gt;
<br>
<br>
You can create a link with this image by placing it inside an
anchor tag &lt;a href=&quot;http://www.welikesex.com&quot;&gt;&lt;IMG SRC=&quot;trc468.jpg&quot;&gt;&lt;/a&gt;
<br>
<br>
<br>
&nbsp;</p>
<p>
</font></font></font></font></font></font></td>
</tr>
</table>
Click Here To Discuss This Or Ask Questions On The Netpond Message Board!
- is offline   Reply With Quote Send a private message to -
Reply


Thread Tools
Display Modes



Netpond Resources
Resource Directory Tutorials & Articles Webmaster Tools Netpond News
 
Netpond Resources
LoveDollars WildCash PussyCash SilverCash
Fetish Hits Cyberwurx Platinum Bucks Python
AEBN GroobyBucks Score-Cash XMoney
Rabbits Reviews CraziesCash TrafficCashGold EvilAngelCash
Orgycash BigClicks Webcams TubeClicks
Free Porn Paradise British Porno British Porn Models ShanesworldCash
Voyeur, Fetish Megasite
All times are GMT -4. The time now is 05:00 PM.


Powered by vBulletin® Version 3.6.10
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
vBCredits v1.4 Copyright ©2007, PixelFX Studios