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.

Orgy, Pissing, Shemale
Anal, Ethnic, Pornstar, Shemale Megasite, Toon, Tranny, Teen, Mature, Lesbian, Gay, Cams, Megasite Megasite, Gay, Shemale, Fetish
Reply
 
LinkBack Thread Tools Display Modes
Old 03-07-2004, 10:43 PM   #1 (permalink)
-
Admin
 
Join Date: Feb 2004
Posts: 314
Points: 0
LESSON 3 - HTML TAGS

<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">
<font size="1">&lt;HTML&gt; &lt;/HTML&gt;<br>
This is placed at the beginning and the end of a document. It
tells the browser that this file is a document containing
hypertext markup language. <br>
<br>
<br>
&lt;HEAD&gt; &lt;/HEAD&gt;<br>
This tag doesn't have any attributes, but is a container for other
tags like the &lt;TITLE&gt; and the &lt;META&gt; tag. It provides the browser,
search engines, or visitors (that know where to look) with
information about the document. It appears after the &lt;HTML&gt; tag
but before the &lt;BODY&gt; tag. <br>
<br>
<br>
&lt;TITLE&gt; &lt;/TITLE&gt;<br>
This tag defines the title of the web page. It should be placed
between the &lt;HEAD&gt; and &lt;/HEAD&gt; tags. <br>
<br>
<br>
&lt;META&gt;<br>
This is a stand alone tag. The meta tag is used to provide
information such as keywords, descriptions, or directions for
search engines. It should be placed between the &lt;HEAD&gt; and &lt;/HEAD&gt;
tags. You can find more information about the meta tag
<a style="color: #972400; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: verdana, arial, sans-serif; text-decoration: none" target="_blank" href="http://www.searchenginewatch.com/webmasters/article.php/2167931">HERE</a>. <br>
<br>
<br>
&lt;BODY&gt; &lt;/BODY&gt;<br>
This tag defines the beginning and the ending of the HTML document
body. It appears after the &lt;/HEAD&gt; tag. It holds the contents of
the web page. You can use this tag to define the color of the
background or if you want to use an image in the background. You
can define the color of regular text, links, active links, and
visited links. An example of this would be <font color="blue">
&lt;BODY BGCOLOR=&quot;#FFFFCC&quot; BACKGROUND=&quot;swirl.jpg&quot; TEXT=&quot;#000000&quot;
LINK=&quot;#6666CC&quot; VLINK=&quot;#FF6699&quot; ALINK=&quot;#000099&quot;&gt;<br>
<font color="black">To get a full list of attributes I would
suggest visiting
<a href="http://www.htmlcompendium.org" target="_blank" style="color: #972400; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: verdana, arial, sans-serif; text-decoration: none">
the HTML Compendium</a> or
<a href="http://www.w3.org" target="_blank" style="color: #972400; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: verdana, arial, sans-serif; text-decoration: none">
the World Wide Web Consortium</a>. <br>
<br>
<br>
&lt;FONT&gt; &lt;/FONT&gt;<br>
This tag defines the look of the text contained between the
beginning and ending tags. You can define the color, the size, and
the face (the name) of the font. If you don't define this, the
browser will use the browser default settings. The text that
appears after the &lt;FONT&gt; tag will not change until the
closing/ending tag &lt;/FONT&gt; or until it encounters another &lt;FONT&gt;
tag. So, it's possible to write a FONT tag as follows:<br>
<br>
&lt;FONT FACE=&quot;arial&quot; COLOR=&quot;RED&quot; SIZE=&quot;2&quot;&gt; to produce
<font color="red" size="2">THIS and then add this &lt;FONT
COLOR=&quot;blue&quot;&gt; to produce <font color="blue">THIS.<br>
<font color="black" size="1">As you can see the face of the font
remained &quot;arial&quot; and the size remained &quot;2,&quot; just the color changed
from red to blue. <br>
<br>
<br>
&lt;IMG&gt;<br>
The image tag is a stand alone tag that tells the browser the name
of the image file that is to be displayed. It always has the
attribute &quot;SRC&quot; with the value being the path to the image file.
Another attribute is &quot;BORDER&quot; If an image is used as a link, a
border will appear around the image by default. If you don't want
a border around the image the BORDER value should be zero. An
example of the IMG tag is as follows: &lt;IMG SRC=&quot;sunflower.jpg&quot;
BORDER=&quot;0&quot;&gt; <br>
<br>
<br>
&lt;A&gt; &lt;/A&gt;<br>
The Anchor tag is used for creating links. The link can be within
the HTML document or to other pages, websites, images, or even
email. The HREF attribute has a value that specifies the URL. The
text that appears between the beginning and ending/closing Anchor
tag will appear on the web page with an underline. The color of
the the text link can be defined in the &lt;BODY&gt; tag. If you don't
define the color of the link, the browser will use the default
settings (usually the default color for a link is blue).<br>
If an &lt;IMG&gt; tag is placed between the beginning and ending/closing
Anchor tag, the image that appears on the page will have a border
around it. If you don't want a border around the image you need to
define that attribute (and value) within the &lt;IMG&gt; tag (as
explained above). An example of an anchor tag would look like
this:<br>
&lt;A HREF=&quot;http://www.netpond.com&quot;&gt;Netpond Adult Webmaster
Resources&lt;/A&gt;<br>
and produce this<br>
<a href="http://www.netpond.com" target="_blank" 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 Adult Webmaster Resources</a><br>
<br>
<br>
&lt;CENTER&gt; &lt;/CENTER&gt;<br>
This tag is extremely helpful. It helps to align objects (text and
images) in the document (web page). The default setting for
alignment is to the left side of the browser window. By placing
text or images between the beginning and ending/closing &lt;CENTER&gt;
tag, they will be<br>
<br>
&nbsp;<center>
<p>horizontally centered on the page.</p>
</center>
<p>&lt;P&gt; &lt;/P&gt;<br>
The Paragraph tag defines the beginning of what else... a
paragraph. It can also be used to align or place text on the left
side, center, or right side of the browser window. Whatever text
appears between the beginning and ending/closing tags will be
affected by that tag. This tag can stand alone, that is you can
use just the beginning tag, but to avoid confusion and debugging
problems, it's usually a good idea to use the ending/closing as
well. An example of using this tag to align text to the right side
of the window would look like this:<br>
&lt;P ALIGN=&quot;right&quot;&gt;<br>
&nbsp;</p>
<p align="right">and would produce this!</p>
<p><br>
<br>
<br>
That concludes the most basic tags. To learn more about HTML I
would suggest reading the following books:<br>
<br>
<u>Instant HTML Programmer's Reference Html</u><br>
HTML 4.0 Edition<br>
by Alex Homer, Chris Ullman, and Steve Wright<br>
Wrox Press Inc; ISBN: 1861001568 <br>
<br>
<br>
<u>HTML: The Definitive Guide, 3rd Edition</u><br>
by Chuck Musciano &amp; Bill Kennedy<br>
O'Reilly &amp; Associates; ISBN: 1565924924 <br>
<br>
<br>
<u>Web Design in a Nutshell : A Desktop Quick Reference</u><br>
by Jennifer Niederst, Richard Koman<br>
O'Reilly &amp; Associates; ISBN: 1565925157</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 Cyberbit
Free Porn Paradise British Porno British Porn Models
BBW, Natural Boobs PussyCash
All times are GMT -4. The time now is 01:34 AM.


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