Jul 20, 2008

Simple Html Guide

Free Web Hosting, No Ads > CONTRIBUTE > Tutorials
Pages: 1, 2

free web hosting

Simple Html Guide

ill
===============================================================================
***Simple HTML Guide By: Chris Martínez a.k.a. iLL***
..::::.. ill.zero[at]gmail.com ..::::..
..::::.. www.zroenergy.net ..::::..
===============================================================================

How To Use this HTML Guide
----------------------------------------------------------------------------------------
Many things are explained in this guide, if you already know them, you might wish to
skip the first few sections and go straight to the tags. Notes are made between ..::
and ::.. So, if you see these little marks, there is always a note inside them.
The notes go to the tags or attributes above the note. If you are viewing this guide
in a browser you may press ctrl+f to find a specific element that you are looking for.
Now that you know how to use this guide, get going!

Introduction to HTML
----------------------------------------------------------------------------------------
HTML stands for Hyper-Text-Markup-Language. It is the basic language, or coding,
for webpages. It sounds hard to learn and it also looks hard to learn, but it is very
possible to learn HTML in a short time span. I will try to explain HTML in ways that
you can comprehend, but because I already know it, I may think you should know
some things that you don't and so I will, undoubtedly, confuse you a little. To
actually learn HTML, you need to use it.

How To Create a HTML Document
----------------------------------------------------------------------------------------
To begin a HTML document first open Notepad. There are many programs that can
be used to produce HTML documents, but I like to use Notepad as it is the fastest
and easiest. To create the HTML document type in the following HTML tags and save
the file as webpage.htm

<html>
<head>
<title>Title</title>
</head>
<body>
Your Name
</body>
</html>

The above looks like jibberish now, but it is actually very simple. The tag, <html>,
tells the browser that this is an HTML document. The tag, <head>, is where
information of the document is inserted. For example, the tag, <title>, is in the
head tag. The tag, <title>, is the title of your webpage, this title will go in the title
bar at the top of the web browser. The close title tag, </title>, tells the browser that
you are through with what the title tag. The close head tag, </head>, tells your
browser that the information in the head tag has ended. The open body tag,
<body>, is the tag that puts your content inside of the browser window. After
you are through entering some content, your name for example, you will close
the body tag, </body> and close the html document with the following tag, </html>.
Then you save your file and open it, if you have done this right, a browser will
open up with My First Webpage appearing in the title bar and your name inside
of the browser. If this happened, congrats, you just made your first webpage.

Producing the Webpage on the Internet
----------------------------------------------------------------------------------------
Now to produce your webpage on the internet, you first have to find a server.
There are many free servers on the internet. Below is a list of some.
Trap17 - http://www.trap17.com - the best!
Yahoo! Geocities - http://www.yahoo.com
MSN Groups - http://groups.msn.com
Angelfire - http://www.angelfire.com
..::note: Angelfire, Yahoo! and MSN do not allow full page customization::..
There are many more, but these are the most popular and best. I suggest you use
Yahoo! Geocities because it allows full editing. MSN Groups is probably the easiest
to use because you don't have to know HTML to make a webpage, but if you are
looking at this, you obviously want to use it! After you upload your webpage to the
internet, people all over the world will be able to see the work that you did! But,
you want people to look at your work and say, "Wow!" right? So continue reading this
HTML Guide and you will find out how!

===============================================================================
Tags and Attributes
===============================================================================

Basic Tags
----------------------------------------------------------------------------------------
<html> </html> Creates HTML Document
<head> </head>Creates Header of HTML Document
<body> </body> Creates Body of HTML Document

Head Attributes
----------------------------------------------------------------------------------------
<title> </title> Creates Name for HTML Document
<meta> Creates Information for the Document

Meta Attributes
----------------------------------------------------------------------------------------
<meta name="description" content="description here"> Creates Description for Search Engines
<meta name="keywords" content="keywords here"> Creates Keywords for Search Engines
<meta http-equiv="pragma" content="no-cache"> No Caches Page
..::note: the meta tags and attributes do not have to be one, they can be seperate::..
<link rel="shortcut icon" href="http://www.yoursite.com/favicon.ico"> Specifies Favicon

Body Attributes
----------------------------------------------------------------------------------------
bgcolor="purple"> Specifies a Color for the background
background="yourimage.gif"> Specifies a Picture that is used for the background
link="blue"> Specifies Color of Links
alink="green"> Specifies Color of Active Link
vlink="yellow"> Specifies Color of Visited Links
text="black"> Specifies Text Color for All Text

Text Tags
----------------------------------------------------------------------------------------
<i> </i> Creates Italic Text
<b> </b> CreatesBold Text
<u> </u> Creates Underlined Text
<h1> </h1> Creates Largest Header Text
<h6> </h6> Creates Smallest Header Text

Font Tag & Attributes
----------------------------------------------------------------------------------------
<font> </font> Font tag
color="orange"> </font> Creates Color of Font
..::note: you can change the color using name or hex value::..
size="1"> </font> Creates Size of Font

Graphical Tags
----------------------------------------------------------------------------------------
<img src="www.yoursite.com/imagename.gif"></img> Inserts Image into HTML Document
..::note: the image tag must always contain the src= attribute::..
<hr> Creates a Horizontal Rule

Image Attributes
----------------------------------------------------------------------------------------
src="www.yoursite.com/imagename.gif"> </img> Specifies the Source of the Image
..::note: the src= attribute is required for images::..
width="50%"> </img> Specifies Width of Image
height="50%"> </img> Specifies Height of Image
..::note: width and height can be done in percent or pixels::..
alt="Insert Caption for Image Here"> </img> Creates Caption for Image
border="1"> </img> Inserts a Border around the Image

Horizontal Rule Attributes
----------------------------------------------------------------------------------------
width="76%"> Specifies Width
height="67%"> Specifies Height
..::note: width and height can be done in percent or pixels::..
color="#000000"> Specifies Color
..::note: you can change the color using name or hex value::..

Anchor (Link) Tags & Attributes
----------------------------------------------------------------------------------------
<a> </a> Anchor (link) tag
<a href="http://www.link here.com"> </a> Creates a Link
<a href="#chris"> </a> Creates a link to something inside the document
<a name="chris"> </a> Names a link inside the document
..::note: to make a link you must enter a name for it between the open
anchor tag and close anchor tag::..
target="_blank"> </a> Specifies Place for the Link to Open
..::note: _blank makes the link open in a new window; if you leave the target attribute out,
the link will open in the same window or frame::..

Formatting
----------------------------------------------------------------------------------------
<center> </center> Centers Text
<p> </p> Creates Paragraphs
..::note: you can insert the attribute align=center, left, or right to align the paragraph::..
<marquee> </marquee> Creates Scrolling Text
..::note: direction of the marquee can be changed by adding the attribute
direction=up or down inside the marquee tag::..
<ol> </ol> Creates a Number List
<ul> </ul> Creates a Bulleted List
<li> Creates List Item
..::note: no closed list item tag is needed::..

Table Tags
----------------------------------------------------------------------------------------
<table> </table> Creates Table Tags
<tr> </tr> Creates a Table Row
<td> </td> Inserts Table Data; Table Cells

Table Attributes
----------------------------------------------------------------------------------------
border="0-?"> </table> Specifies the Thickness of the Border
bgcolor="#cccccc"> </table> Specifies Background Color
..::note: you can change the color using name or hex value::..
background="image.gif"> </table> Specifies an Image as the Background
align="center, left, or right"> </table> Specifies Where the Table is Located
cellspacing="0-?"> </table> Specifies the Spacing Between Table Cells
cellpadding="0-?"> </table> Specifies the Padding of the Cells
..::note: if the above is set to zero the word will be right on the border::..

===============================================================================
***Simple HTML Guide By: Chris Martínez a.k.a. iLL***
..::::.. ill.zero[at]gmail.com ..::::..
..::::.. www.zroenergy.net ..::::..
===============================================================================
All Content Produced by Chris Martinez.
You may not copy or transfer this guide anywhere without the expressed written
permission of Chris Martínez. To ask for the permission email me at the following
address: ill.zero[at]gmail.com If this guide is found to have been copied or transfered
anywhere, there shall be consequences. So just ask!

 

 

 


Reply

ArcaneAlex
Great tutorial for beginners! When I was beginning to learn how to write HTML, I found a website called "LissaExplains.com". If anyone is looking for a good HTML tutorial site, that's where you should go!

Reply

karlo
QUOTE(ill @ Feb 24 2005, 10:06 AM)
===============================================================================
***Simple HTML Guide By: Chris Martínez a.k.a. iLL***
..::::.. ill.zero[at]gmail.com ..::::..
..::::.. www.zroenergy.net ..::::..
===============================================================================

How To Use this HTML Guide
----------------------------------------------------------------------------------------
Many things are explained in this guide, if you already know them, you might wish to
skip the first few sections and go straight to the tags. Notes are made between ..::
and ::.. So, if you see these little marks, there is always a note inside them.
The notes go to the tags or attributes above the note. If you are viewing this guide
in a browser you may press ctrl+f to find a specific element that you are looking for.
Now that you know how to use this guide, get going!

Introduction to HTML
----------------------------------------------------------------------------------------
HTML stands for Hyper-Text-Markup-Language. It is the basic language, or coding,
for webpages. It sounds hard to learn and it also looks hard to learn, but it is very
possible to learn HTML in a short time span. I will try to explain HTML in ways that
you can comprehend, but because I already know it, I may think you should know
some things that you don't and so I will, undoubtedly, confuse you a little. To
actually learn HTML, you need to use it.

How To Create a HTML Document
----------------------------------------------------------------------------------------
To begin a HTML document first open Notepad. There are many programs that can
be used to produce HTML documents, but I like to use Notepad as it is the fastest
and easiest. To create the HTML document type in the following HTML tags and save
the file as webpage.htm

<html>
<head>
<title>Title</title>
</head>
<body>
Your Name
</body>
</html>

The above looks like jibberish now, but it is actually very simple. The tag, <html>,
tells the browser that this is an HTML document. The tag, <head>, is where
information of the document is inserted. For example, the tag, <title>, is in the
head tag. The tag, <title>, is the title of your webpage, this title will go in the title
bar at the top of the web browser. The close title tag, </title>, tells the browser that
you are through with what the title tag. The close head tag, </head>, tells your
browser that the information in the head tag has ended. The open body tag,
<body>, is the tag that puts your content inside of the browser window. After
you are through entering some content, your name for example, you will close
the body tag, </body> and close the html document with the following tag, </html>.
Then you save your file and open it, if you have done this right, a browser will
open up with My First Webpage appearing in the title bar and your name inside
of the browser. If this happened, congrats, you just made your first webpage.

Producing the Webpage on the Internet
----------------------------------------------------------------------------------------
Now to produce your webpage on the internet, you first have to find a server.
There are many free servers on the internet. Below is a list of some.
Trap17 - http://www.trap17.com - the best!
Yahoo! Geocities - http://www.yahoo.com
MSN Groups - http://groups.msn.com
Angelfire - http://www.angelfire.com
..::note: Angelfire, Yahoo! and MSN do not allow full page customization::..
There are many more, but these are the most popular and best. I suggest you use
Yahoo! Geocities because it allows full editing. MSN Groups is probably the easiest
to use because you don't have to know HTML to make a webpage, but if you are
looking at this, you obviously want to use it! After you upload your webpage to the
internet, people all over the world will be able to see the work that you did! But,
you want people to look at your work and say, "Wow!" right? So continue reading this
HTML Guide and you will find out how!

===============================================================================
Tags and Attributes
===============================================================================

Basic Tags
----------------------------------------------------------------------------------------
<html> </html> Creates HTML Document
<head> </head>Creates Header of HTML Document
<body> </body> Creates Body of HTML Document

Head Attributes
----------------------------------------------------------------------------------------
<title> </title> Creates Name for HTML Document
<meta> Creates Information for the Document

Meta Attributes
----------------------------------------------------------------------------------------
<meta name="description" content="description here"> Creates Description for Search Engines
<meta name="keywords" content="keywords here"> Creates Keywords for Search Engines
<meta http-equiv="pragma" content="no-cache"> No Caches Page
..::note: the meta tags and attributes do not have to be one, they can be seperate::..
<link rel="shortcut icon" href="http://www.yoursite.com/favicon.ico"> Specifies Favicon

Body Attributes
----------------------------------------------------------------------------------------
bgcolor="purple"> Specifies a Color for the background
background="yourimage.gif"> Specifies a Picture that is used for the background
link="blue"> Specifies Color of Links
alink="green"> Specifies Color of Active Link
vlink="yellow"> Specifies Color of Visited Links
text="black"> Specifies Text Color for All Text

Text Tags
----------------------------------------------------------------------------------------
<i> </i> Creates Italic Text
<b> </b> CreatesBold Text
<u> </u> Creates Underlined Text
<h1> </h1> Creates Largest Header Text
<h6> </h6> Creates Smallest Header Text

Font Tag & Attributes
----------------------------------------------------------------------------------------
<font> </font> Font tag
color="orange"> </font> Creates Color of Font
..::note: you can change the color using name or hex value::..
size="1"> </font> Creates Size of Font

Graphical Tags
----------------------------------------------------------------------------------------
<img src="www.yoursite.com/imagename.gif"></img> Inserts Image into HTML Document
..::note: the image tag must always contain the src= attribute::..
<hr> Creates a Horizontal Rule

Image Attributes
----------------------------------------------------------------------------------------
src="www.yoursite.com/imagename.gif"> </img> Specifies the Source of the Image
..::note: the src= attribute is required for images::..
width="50%"> </img> Specifies Width of Image
height="50%"> </img> Specifies Height of Image
..::note: width and height can be done in percent or pixels::..
alt="Insert Caption for Image Here"> </img> Creates Caption for Image
border="1"> </img> Inserts a Border around the Image

Horizontal Rule Attributes
----------------------------------------------------------------------------------------
width="76%"> Specifies Width
height="67%"> Specifies Height
..::note: width and height can be done in percent or pixels::..
color="#000000"> Specifies Color
..::note: you can change the color using name or hex value::..

Anchor (Link) Tags & Attributes
----------------------------------------------------------------------------------------
<a> </a> Anchor (link) tag
<a href="http://www.link here.com"> </a> Creates a Link
<a href="#chris"> </a> Creates a link to something inside the document
<a name="chris"> </a> Names a link inside the document
..::note: to make a link you must enter a name for it between the open
anchor tag and close anchor tag::..
target="_blank"> </a> Specifies Place for the Link to Open
..::note: _blank makes the link open in a new window; if you leave the target attribute out,
the link will open in the same window or frame::..

Formatting
----------------------------------------------------------------------------------------
<center> </center> Centers Text
<p> </p> Creates Paragraphs
..::note: you can insert the attribute align=center, left, or right to align the paragraph::..
<marquee> </marquee> Creates Scrolling Text
..::note: direction of the marquee can be changed by adding the attribute
direction=up or down inside the marquee tag::..
<ol> </ol> Creates a Number List
<ul> </ul> Creates a Bulleted List
<li> Creates List Item
..::note: no closed list item tag is needed::..

Table Tags
----------------------------------------------------------------------------------------
<table> </table> Creates Table Tags
<tr> </tr> Creates a Table Row
<td> </td> Inserts Table Data; Table Cells

Table Attributes
----------------------------------------------------------------------------------------
border="0-?"> </table> Specifies the Thickness of the Border
bgcolor="#cccccc"> </table> Specifies Background Color
..::note: you can change the color using name or hex value::..
background="image.gif"> </table> Specifies an Image as the Background
align="center, left, or right"> </table> Specifies Where the Table is Located
cellspacing="0-?"> </table> Specifies the Spacing Between Table Cells
cellpadding="0-?"> </table> Specifies the Padding of the Cells
..::note: if the above is set to zero the word will be right on the border::..

===============================================================================
***Simple HTML Guide By: Chris Martínez a.k.a. iLL***
..::::.. ill.zero[at]gmail.com ..::::..
..::::.. www.zroenergy.net ..::::..
===============================================================================
All Content Produced by Chris Martinez.
You may not copy or transfer this guide anywhere without the expressed written
permission of Chris Martínez. To ask for the permission email me at the following
address: ill.zero[at]gmail.com If this guide is found to have been copied or transfered
anywhere, there shall be consequences. So just ask!
*



Please create an HTML version of the above so that I will be able to put it on my website. Don't worry. You're copyright will be included.

 

 

 


Reply

rejected
Yea, I like that, I went to www.w3schools.com when I was a beginner.

Reply

Oblivion 9999
QUOTE(ill @ Feb 24 2005, 02:06 AM)
===============================================================================
***Simple HTML Guide By: Chris Martínez a.k.a. iLL***
..::::.. ill.zero[at]gmail.com ..::::..
..::::.. www.zroenergy.net ..::::..
===============================================================================

How To Use this HTML Guide
----------------------------------------------------------------------------------------
Many things are explained in this guide, if you already know them, you might wish to
skip the first few sections and go straight to the tags. Notes are made between ..::
and ::.. So, if you see these little marks, there is always a note inside them.
The notes go to the tags or attributes above the note. If you are viewing this guide
in a browser you may press ctrl+f to find a specific element that you are looking for.
Now that you know how to use this guide, get going!

Introduction to HTML
----------------------------------------------------------------------------------------
HTML stands for Hyper-Text-Markup-Language. It is the basic language, or coding,
for webpages. It sounds hard to learn and it also looks hard to learn, but it is very
possible to learn HTML in a short time span. I will try to explain HTML in ways that
you can comprehend, but because I already know it, I may think you should know
some things that you don't and so I will, undoubtedly, confuse you a little. To
actually learn HTML, you need to use it.

How To Create a HTML Document
----------------------------------------------------------------------------------------
To begin a HTML document first open Notepad. There are many programs that can
be used to produce HTML documents, but I like to use Notepad as it is the fastest
and easiest. To create the HTML document type in the following HTML tags and save
the file as webpage.htm

<html>
<head>
<title>Title</title>
</head>
<body>
Your Name
</body>
</html>

The above looks like jibberish now, but it is actually very simple. The tag, <html>,
tells the browser that this is an HTML document. The tag, <head>, is where
information of the document is inserted. For example, the tag, <title>, is in the
head tag. The tag, <title>, is the title of your webpage, this title will go in the title
bar at the top of the web browser. The close title tag, </title>, tells the browser that
you are through with what the title tag. The close head tag, </head>, tells your
browser that the information in the head tag has ended. The open body tag,
<body>, is the tag that puts your content inside of the browser window. After
you are through entering some content, your name for example, you will close
the body tag, </body> and close the html document with the following tag, </html>.
Then you save your file and open it, if you have done this right, a browser will
open up with My First Webpage appearing in the title bar and your name inside
of the browser. If this happened, congrats, you just made your first webpage.

Producing the Webpage on the Internet
----------------------------------------------------------------------------------------
Now to produce your webpage on the internet, you first have to find a server.
There are many free servers on the internet. Below is a list of some.
Trap17 - http://www.trap17.com - the best!
Yahoo! Geocities - http://www.yahoo.com
MSN Groups - http://groups.msn.com
Angelfire - http://www.angelfire.com
..::note: Angelfire, Yahoo! and MSN do not allow full page customization::..
There are many more, but these are the most popular and best. I suggest you use
Yahoo! Geocities because it allows full editing. MSN Groups is probably the easiest
to use because you don't have to know HTML to make a webpage, but if you are
looking at this, you obviously want to use it! After you upload your webpage to the
internet, people all over the world will be able to see the work that you did! But,
you want people to look at your work and say, "Wow!" right? So continue reading this
HTML Guide and you will find out how!

===============================================================================
Tags and Attributes
===============================================================================

Basic Tags
----------------------------------------------------------------------------------------
<html> </html> Creates HTML Document
<head> </head>Creates Header of HTML Document
<body> </body> Creates Body of HTML Document

Head Attributes
----------------------------------------------------------------------------------------
<title> </title> Creates Name for HTML Document
<meta> Creates Information for the Document

Meta Attributes
----------------------------------------------------------------------------------------
<meta name="description" content="description here"> Creates Description for Search Engines
<meta name="keywords" content="keywords here"> Creates Keywords for Search Engines
<meta http-equiv="pragma" content="no-cache"> No Caches Page
..::note: the meta tags and attributes do not have to be one, they can be seperate::..
<link rel="shortcut icon" href="http://www.yoursite.com/favicon.ico"> Specifies Favicon

Body Attributes
----------------------------------------------------------------------------------------
bgcolor="purple"> Specifies a Color for the background
background="yourimage.gif"> Specifies a Picture that is used for the background
link="blue"> Specifies Color of Links
alink="green"> Specifies Color of Active Link
vlink="yellow"> Specifies Color of Visited Links
text="black"> Specifies Text Color for All Text

Text Tags
----------------------------------------------------------------------------------------
<i> </i> Creates Italic Text
<b> </b> CreatesBold Text
<u> </u> Creates Underlined Text
<h1> </h1> Creates Largest Header Text
<h6> </h6> Creates Smallest Header Text

Font Tag & Attributes
----------------------------------------------------------------------------------------
<font> </font> Font tag
color="orange"> </font> Creates Color of Font
..::note: you can change the color using name or hex value::..
size="1"> </font> Creates Size of Font

Graphical Tags
----------------------------------------------------------------------------------------
<img src="www.yoursite.com/imagename.gif"></img> Inserts Image into HTML Document
..::note: the image tag must always contain the src= attribute::..
<hr> Creates a Horizontal Rule

Image Attributes
----------------------------------------------------------------------------------------
src="www.yoursite.com/imagename.gif"> </img> Specifies the Source of the Image
..::note: the src= attribute is required for images::..
width="50%"> </img> Specifies Width of Image
height="50%"> </img> Specifies Height of Image
..::note: width and height can be done in percent or pixels::..
alt="Insert Caption for Image Here"> </img> Creates Caption for Image
border="1"> </img> Inserts a Border around the Image

Horizontal Rule Attributes
----------------------------------------------------------------------------------------
width="76%"> Specifies Width
height="67%"> Specifies Height
..::note: width and height can be done in percent or pixels::..
color="#000000"> Specifies Color
..::note: you can change the color using name or hex value::..

Anchor (Link) Tags & Attributes
----------------------------------------------------------------------------------------
<a> </a> Anchor (link) tag
<a href="http://www.link here.com"> </a> Creates a Link
<a href="#chris"> </a> Creates a link to something inside the document
<a name="chris"> </a> Names a link inside the document
..::note: to make a link you must enter a name for it between the open
anchor tag and close anchor tag::..
target="_blank"> </a> Specifies Place for the Link to Open
..::note: _blank makes the link open in a new window; if you leave the target attribute out,
the link will open in the same window or frame::..

Formatting
----------------------------------------------------------------------------------------
<center> </center> Centers Text
<p> </p> Creates Paragraphs
..::note: you can insert the attribute align=center, left, or right to align the paragraph::..
<marquee> </marquee> Creates Scrolling Text
..::note: direction of the marquee can be changed by adding the attribute
direction=up or down inside the marquee tag::..
<ol> </ol> Creates a Number List
<ul> </ul> Creates a Bulleted List
<li> Creates List Item
..::note: no closed list item tag is needed::..

Table Tags
----------------------------------------------------------------------------------------
<table> </table> Creates Table Tags
<tr> </tr> Creates a Table Row
<td> </td> Inserts Table Data; Table Cells

Table Attributes
----------------------------------------------------------------------------------------
border="0-?"> </table> Specifies the Thickness of the Border
bgcolor="#cccccc"> </table> Specifies Background Color
..::note: you can change the color using name or hex value::..
background="image.gif"> </table> Specifies an Image as the Background
align="center, left, or right"> </table> Specifies Where the Table is Located
cellspacing="0-?"> </table> Specifies the Spacing Between Table Cells
cellpadding="0-?"> </table> Specifies the Padding of the Cells
..::note: if the above is set to zero the word will be right on the border::..

===============================================================================
***Simple HTML Guide By: Chris Martínez a.k.a. iLL***
..::::.. ill.zero[at]gmail.com ..::::..
..::::.. www.zroenergy.net ..::::..
===============================================================================
All Content Produced by Chris Martinez.
You may not copy or transfer this guide anywhere without the expressed written
permission of Chris Martínez. To ask for the permission email me at the following
address: ill.zero[at]gmail.com If this guide is found to have been copied or transfered
anywhere, there shall be consequences. So just ask!
*



wtf, how did you manage to type out so much on just some of the basics of html...damn...i know some, I'm not sure whether you talked about table background because i just did a speed-read but to do a table background you can do <table body bgcolor = "(whatever colour you want"). You insert it in the place after you close the brackets of table e.g <table border = 1 width = 13% cell spacing = 2><table body bgcolor = "(whatever you want)">. Thats where you put that. Oh yeah you don't need to put speech marks on numbers or numbers with percentages. If you want a good site for finding out billions of colours, search for "html colors" on yahoo.com and it should be the first link labeled Html Colors. Also I don't think I saw marquee up there, it makes the text go across the screen over and over. Its code is <marquee>(insert text)</marquee>. And you can make the text bounce of the screen so it stays on there bouncing of the corners. its <marquee behavior = "alternate">(insert text)</marquee>. That should be all the stuff I know for now. I'm still learning stuff...like meta. But just to let you know, I think that guide was a really good one, it can really help out a beginner and helped me out just a bit now, the stuff with meta and I can't always remember how to do a table. biggrin.gif

Reply

Taupe
Come on, wake up ! user posted image
We're in 2005. Most of the tags and attributs you gave are deprecated...
I really hope nobody will follow this outdated tutorial...user posted image

Reply

ill
Taupe, it's Simple and for Beginners. I didn't make it for those of us who already know stuff. Remember when you started out? You learned the bold tag and was like, wow, that's cool. Then <s> tag and you were like ohmy.gif

p.s. these tags aren't depreciated they are used on almost every page on the internet!

Reply

Arbin Gurung
Great Tutorial but these days software such as dreamweaver do most of such thing and no manual coding isn't required

Reply

ill
That's true Arbin, however notepad owns all! biggrin.gif

Reply

taylor
Notepad is tha bomb yo! I much prefer writing my pages from scratch on notepad to using a do-it-all GUI program. It takes longer, but I don't care. FYI: anyone who's looking for a Notepad-like text-editor for OS X would do well to check out Smultron.

Reply

Latest Entries

ill
well Taupe, they are deprecated, i looked it up (noticed i spelled deprecated wrong lol)

but knowing these simple tags will make it simpler to make css files


..as if w3c ruled the web..

Reply

Oblivion 9999
QUOTE(Arbin Gurung @ Feb 24 2005, 06:46 PM)
Great Tutorial but these days software such as dreamweaver do most of such thing and no manual coding isn't required
*


Notepad's definitely the best for writing out html forms. I don't really like using software for html, personally I really hate using them, in a way they are kinda cheap and I can make my own webpages myself with notepad so I don't use software at all. I've seen dreamweaver and its quite good but programs like mediator pro or whatever really brings the html making softwares down. And besides, I think that notepad owns everything.

QUOTE(taylor @ Feb 24 2005, 07:16 PM)
Notepad is tha bomb yo!  I much prefer writing my pages from scratch on notepad to using a do-it-all GUI program.  It takes longer, but I don't care.  FYI: anyone who's looking for a Notepad-like text-editor for OS X would do well to check out Smultron.
*



Thanks for the info, it helps out quite a bit biggrin.gif

Reply

Taupe
QUOTE(ill @ Feb 24 2005, 04:40 PM)
Taupe, it's Simple and for Beginners.
Then you failed....
First : it's not simple. It would has been simpler to teach CSS instead of this huge list of useless tags.
Second : it's for beginners you said, so why do you teach them bullshit ? They won't be able to realise that you were wrong, and they'll keep those bad habits for a long time...
QUOTE
p.s. these tags aren't depreciated
*
Yes they are. Please, please, read the specs before posting...

Reply

guangdian
what was that doz it an soft ware or anything else or doz it better than Cute HTML no cheat guyz.

Reply

ill
The HTML version is done, just right click this link and save link as, to save it to your computer!
http://www.zroenergy.net/htmlguide.htm

All Trap17 members have permission to use this on their site if they wish, however you must not alter the page! If you want to style it according to your page you can include the CSS file. You can also alter it to fit your site's theme, but do not alter any actual content. You must include the copyright!

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Pages: 1, 2
Similar Topics

Keywords : html

  1. Add Flashing Inbox To Invisionfree Forum - Html code for invsiionfree!! (0)
  2. How To: Html Tables. - I find these really useful. (8)
    If you are a novice web designer, but want your site to look advanced and proffessional, then what
    better way to do so than to use HTML tables? HTML tables are a really easy way of formatting your
    text, to make your ste look proffesional. It looks good, and its easy, what more can you ask for?
    You have to use the tag, so first lets start off with: HTML Table > /table > In
    between theese two tags, we will add the data for the table, using the tags and . =Table
    Heading (Title) =Table Data (what you want in the table) =table row (new row) So, lets ...
  3. Creating Navigation For Html Websites - Have a common navigation menu for the whole website! (12)
    Pre-requisite: HTML, inline frame tags 1 Attachment(.zip) included. Updates : 29-12-07: Doctype
    added in example files (Advised by jlhaslip) Designing a whole website takes a lot of planning
    and organization. Designing a proper navigation system is a basic step in building your website. If
    you are developing webpages in html you would have observed that as you go on creating pages it
    becomes difficult to maintain the links to the pages. This article will guide you in developing a
    common navigation menu for your website. It describes three ways, so if you don'...
  4. Simple Scripts In Html And Javascript - Things like BackgroundColorChanger and so (7)
    like in the topic, here is a description how to change the Backgroundcolor "On The Fly", by klicking
    on a button or radio-box first, we ned the html-and body-tags, create a new html-file on your
    desktop and write the following: QUOTE <script language = "JAVASCRIPT">
    browser interpretation: html - tag means "hey, browser, here comes HTML" in the body-tag you define
    the looking of your site. you can add things like "bgcolor" for the background, "text" for the
    textcolor and link / alink / hlink / vlink to define the linkcolor ( ) the scripttag i...
  5. [php] Clean Code Functions - Clean up your html output from php scripts (5)
    There is another Topic about writing 'clean' HTML code posted elsewhere on the Forum.
    I'll edit this Topic and add the link so you can review it on your own, and there is no need for
    me to comment on it in this thread, but the purpose of this Topic is to introduce a pair of
    functions which can be used for making sure that the HTML output from my scripts is readable when a
    view-source is reviewed. Two handy functions are included here. They work together quite nicely,
    and I will start this Tutorial with a short summary of the reasons for their 'being...
  6. Html Legend - Learn how to create a handy legend with HTML! (9)
    I think this is pretty neat... good for those people who maybe aren't that great at designing
    things but still want something to look nice.. CODE <fieldset> <legend>Legend
    title</legend> Content </fieldset> try it in note pad.. it looks nice...good for
    forums, sign up forms......
  7. Cakephp On Ubuntu - using your own public_html folder (0)
    Hi, there are many tutorials about this, but i would like to type the steps i followed in order to
    get cakephp working on my user public_html folder. as many of you probably know, if you have
    apache's userdir module loaded, you can put your web pages on /home/user/public_html , and
    access them with the url: http://localhost/~user/ . I really prefer this, so all my web pages are
    on my personal home, but how to configure cakephp to work with these paths, i got a hard time with
    this, but finally got it!. here's how: in case you don't have apache2's u...
  8. Html Span - (7)
    HTML Span Description The span tag is quite the handy tag to have at your disposal. You can use
    it for everything from Text Formating, to creating a scrollable text area. When combined with CSS it
    becomes an easy-to-use tool for making your website as uniform as possible, as your not bogged down
    with tags for every heading and title on your website. Try It Out CODE <html>
    <body> <div class="content"> <span class="heading1"> Heading
    or title goes here. </span><br><br> All the content insi...
  9. Html Bdo... - (13)
    Description I find that it is often difficult to write a sentence backwards, but thanks to HTML, I
    can now complete this task in only a few seconds. Now the only problem is it is very difficult to
    read... Try It Out Welcome to one of the most useless functions of HTML. The tags enable you to
    write a sentence backwards. The code is quite simple. CODE <bdo dir="rtl">I
    find that it is often difficult to write a sentence backwards, but thanks to HTML, I can now
    complete this task in only a few seconds. Now the only problem is it is very difficult to r...
  10. Want-to-start Html Tutorials - An HTML tutorial that covers the basics (2)
    NOTE: Don't use a rich text editor* for writing HTML code! Use Notepad in Windows,
    SimpleText in Mac or TextEdit in OSX, but you must set the following preferences for the HTML code
    to work! In the Format menu, select Plain Text. Open the preferences window from the Text
    Edit menu, then select "Ignore rich text commands in HTML files." Start Creating Your Own HTML
    File You can either use HTM or HTML file extensions. For more information, visit:
    http://filext.com/file-extension/htm for HTM or http://filext.com/file-extension/html for HT...
  11. Create A Simple Html Editor With Php And Javascript - (3)
    Ok, I will teach you how to create a simple HTML editor that runs online with buttons that add HTML
    tags. Before we start: You should have basic knowledge of these languages. HTML/XHTML
    Javascript PHP You will need Ability to use filesystem functions. Chmodding abilities
    Features of Editor Online PHP safe Full HTML support A Few Bad Features Can only create new
    documents or overwrite Fairly unsafe Now we are ready to begin. The PHP Script This will be
    our PHP script that we will use to make the file. Make a file called save.php Here is the...
  12. Spice Up Your Forms - With a bit of CSS and HTML alignment (11)
    Ever wonder how to make those stylish forms you see everywhere? Well now it's your change to
    learn. This short tutorial will show you how to do exactly that. Here is a bit of css to spice
    up the form. I have included comments to explain what classes will change what in the forms.
    CODE <style type='text/css'> .form table { background-color: #187cae; }
    /*The following css class will change the table cells within the .form div */ .form td {
    background-color: #bbe0f4;            padding: 3px;            border: 0px;         ...
  13. HTML tags and examples - Condensed form of course from my site... (37)
    Well, I decided to try and help out some of the users here who might be unexperienced in HTML, so I
    condensed the begginer's HTML course at my website. Here it is... Lesson 1 HTML means Hyper
    Text Markup Language. HTML is a very common language used for many websites, is the base for more
    complicated and powerful langauges like php, HTML can seem hard, but you will find it is one of the
    easiest langauges one can learn. The core of HTML is the tag, a tage is just a set of two
    arrows-like brackets created by hitting Shift and the comma key, or Shift and the period...
  14. Do You Want To Use Php Code In Your Html Pages? - Within two minutes you will! (9)
    Whilst searching around for help to setup cutenews blog I came across a way to use php in html pages
    - lo and behold it works! so I thought I'd share it with you all (Unfortunately I can't
    remember the site so I wrote this up a couple of minutes after I did it:) ). This method requires a
    web server with apache installed. So, luckily for us all this covers the whole of Trap17... even
    Qupis /tongue.gif" style="vertical-align:middle" emoid=":P" border="0" alt="tongue.gif" /> Just
    to make the point, this is in no way a difficult task and it doesn't requir...
  15. How To Make A Simple File Based Shoutbox Using Php And Html - (8)
    A simple tut to make a simple shoutbox. Let me jump right in. First of all you need the standard
    equipment for PHP, an IDE like XAMPP and an editor like PHP EDITOR 2OO7. Were going to make a
    simple guestbook using three files, webpage.php, shout.php and shout.txt. Webpage.php can be
    changed to whatver you want, it will be the page on which the guestbok is shown, you could even use
    this code and add it to another php page n your site. Shout.php is the proccessing page and
    shout.txt is where the shouts are stored. Firstly we need to make the visual design of the box....
  16. Document Type Declarations - And why we use them in html pages (0)
    This code: CODE <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
    "http://www.w3.org/TR/html4/strict.dtd"> <html> <head>
      <title>HTML 4.0 Strict document</title>     <meta
    http-equiv="content-type"  content="text/html;charset=utf-8" >     <meta
    http-equiv="Content-Style-Type"  content="text/css" > </head>
    <body>      <p>... Your HTML content here ...</p>      <p>... More
    HTML content here ...</p>   </b...
  17. Fast Template Design In Joomla Cms - Basic knowlege of Html needed (2)
    Joomla is one of the most powerfull CMS sistems around. It is free under GNU/GPL license and
    everyone with simple knowlege of webdesign (and even without it) can use it for it's website.
    For now the only way i know on how to design a template in joomla is by using Dreamweaver and Joomla
    (joomlasolutions1.0.mxp-dreamweaver.mxp) extension for dreamweaver! Template design in joomla
    is quite simple really. This template that i'll show you is the most simplest of them all, but
    it's enough for one to learn Basics of template design. Further notice is that this...
  18. Integrating Html And Css Part 1 - (5)
    Ok. Well i am writing this as a series of tutorials i will be doing on this subject, so enjoy. I
    hope this helps. Introduction to HTML and CSS
    HTML and CSS are to work together. HTML is what puts the characters on the page, while CSS is what
    makes everything look outreageous! For instance, I would use HTML if i wanted to put "Trap17 is
    the poop!" onto my page, although if i wanted to make it look nice like this by adding a font,
    and maybe some color, then I would use CSS. Learn the HTML. Ok this is my lit...
  19. Basic Html (for Us Kids) - (23)
    What is HTML? HTML (hypertext markup language) is computer language that is used to webpages. It
    can be confusing to understand for some of us kids. HTML pages are text files that has of HTML tags
    (they can place the text or images whereever you want to place it), and text you can place between
    the tags so the text willshow up on your page when you put it on the WWW. Tags are instructions that
    tell your browser what to show on ya website. They break up your webpage into basic sections. All
    tags start with a (right bracket). If you are a starter you need 4 tools A...
  20. How To Create Html Page Anchors - Click A Link And Take You To A Certin Place On The Same Page (5)
    Have you ever wondered how people have a normal link but all it does it take you to the middle of a
    long page? well here is a solution DEMO: Here Ok well first off for the link it will be just
    like a normal link code except you wont put a http://URL.com/file.php it will look somthing like
    this QUOTE name ">Click This Link! there must be a # sign in front of this to work..
    now, for the content that the person will be re-directed to after clicking the link QUOTE name
    "> the items in bold is what you need to change QUOTE name "> i...
  21. Multiple Classes In Html - you can use more than one at a time (8)
    Multiple Classes in Css Styles Classes are used in html pages to give certain defined
    attributes to elements. They are useful when the attributes are to be used in more than one place on
    a page. (Named Id's are only allowed once per page, but I digress... might have a tutorial on
    that some day.) Sometimes you want Red text and sometimes you want Bold text. Easy enough to do,
    simply define a class and apply it to the element you want red or bold. Use this class where you
    want on the page, since classes are enabled to be used in several spots, for different u...
  22. Saint-michaels Html Tips And Tricks Issue # 2 - some more tricks of the trade and some wierd stuff to (2)
    Well i thought it was time to bring in issue 2 of html tips and tricks and i found a very
    interesting html coding which i thought was funny as hell its called Preventing Search Engine
    Indexing this coding is used to keep your website from being index why i don't know why you
    don't want you website listed unless it someone stupid as in telletubbies.com but heres the code
    This tag tells the robots not to index this page and not to follow any links within the
    page. QUOTE This tag tells the robots not to index this page, but follow any links wit...
  23. Saint-michaels Html Tips And Tricks #4 - been awhile so here somewhat new stuff (12)
    WEll its been awhile since i did so i will put up some more useful html tips and tricks here on
    trap17.com Ok for trick actually, want to know how some websites got those ool icons put on their
    website link in the favorites folder well here you go in 3 quick steps. 1. create an image then
    shrink it down to 16x16 and save it as avicon .bmp. 2. then change it to .ico, when is the file
    reconizing it as a icon., if you are having problems saving it, there are some resources out there
    that can change it for you. 3. load the image to your website and add this tag in betwee...
  24. Saint Michael Xhtml Tips And Tricks #1 - xhtml= html 5.0 :P (3)
    Well by the many views i have seen on my web design issues i should go into new territory, so im
    going start with some useful xhtml info for you web design fenatics, the info i present to you is
    from other websites so be warned it might or might not work all depends but lets start off with the
    basic info for using xhtml. Also this tutorial is for beginners so i won't be doing any xml
    info due to it being a more server side then actually webdesign 1. DOCTYPE this is used to tell
    the browser what kind of infomation it will be displaying. nothing as really changed...
  25. Saint-michael Html Tips And Tricks Issue #3 - exploring meta tags and what uses they have (0)
    Todays issue we are going to talk about a bunch of good newbie stuff. The first is meta tags to
    make it easy use a generator, from my searches on the internet ther are soe many meta tags to use
    its not even funny but for those whoe like them is are the more common ones that are used for a
    website. QUOTE also for a dynamic look using the meta this called page
    fading so to speak, what it does when you click on a link the website will fade for a duration of
    time to the next page on your site warning it doesn't do anything when you first cl...
  26. Saint_michael Html Tips & Tricks Issue #1 - useful html stuff (1)
    this little trick i though was useful it used to send a visitor to another page using meta tag and
    it sends the user to another page with in a few seconds for example you will go to the new page in 5
    seconds CODE <META HTTP-EQUIV=REFRESH
    CONTENT="5;URL=http://www.yoursitehere.com"> and for those have a good knowledge
    of javascript they could use this script right here CODE <html> <head>
    <title>Refresh Page</title> <script language="JavaScript">
    <!-- var time = null function move&#...
  27. Html With Css - a easy look at CSS (13)
    Cascading Stylesheets, or CSS, is a very easy way to spice up your web site. The thing I like about
    CSS, is it gives you a more extended version for styles. The tag for example is very limited with
    what it can do. With CSS though, you can do numerous things. from mouseovers (a:hover) to just
    changing a simple paragraph tag to a fancy one. there are two ways to incorperate the style
    sheet. the first one is to just put it inside your page: CODE <html> <head>
    <style> all the stuff would go here - </style> </head> ...
  28. Web Programming Tuts For The Beginner - HTML for the beginner (8)
    Hello and welcome to our lil' web programming session. Here we assume that our students are
    complete noovices of web programming. If you havent ever done any web prograqming, then you've
    come to the right place. HERE WE GO
    -------------------------------------------------------------------------------- HTML TAGS HTML
    works in a very simple, very logical, format. It reads like you do, top to bottom, left to right.
    That's important to remember. HTML is written with TEXT. What you use to set certain sections
    apart as bigger text, smaller text, bold text,...
  29. Webmaster Level 1 - The sequel to my smash hit HTML tutorial (3)
    Here is the link to my first HTML turtorial, which will help as a refresher course, even if you
    already know HTML pretty wel. http://www.trap17.com/forums/Html-t8780.html WebMaster Level 1
    Lesson 1 a Breif Refresher Course Remeber the tutorial I wrote up a few days ago? Well this is
    the sequel, it includes some heavy HTML, some CSS. First of all we should make sure your still up
    to date, so take this simple little quiz, it you get 2 or more wrong please go back to the first
    tutorial and do a little reveiwing. True or False? 1.) The basic structure of HTML is...



Looking for simple, html, guide

Searching Video's for simple, html, guide
Add Flashing
Inbox To
Invisionfree
Forum Html
code for
invsiionfree
!!
How To: Html
Tables. I
find these
really
useful.
Creating
Navigation
For Html
Websites
Have a
common
navigation
menu for the
whole
website!
Simple
Scripts In
Html And
Javascript
Things like
BackgroundCo
lorChanger
and so
[php] Clean
Code
Functions
Clean up
your html
output from
php scripts
Html Legend
Learn how to
create a
handy legend
with
HTML!
Cakephp On
Ubuntu using
your own
public_html
folder
Html Span
Html Bdo...
Want-to-star
t Html
Tutorials An
HTML
tutorial
that covers
the basics
Create A
Simple Html
Editor With
Php And
Javascript
Spice Up
Your Forms
With a bit
of CSS and
HTML
alignment
HTML tags
and examples
Condensed
form of
course from
my site...
Do You Want
To Use Php
Code In Your
Html Pages?
Within two
minutes you
will!
How To Make
A Simple
File Based
Shoutbox
Using Php
And Html
Document
Type
Declarations
And why we
use them in
html pages
Fast
Template
Design In
Joomla Cms
Basic
knowlege of
Html needed
Integrating
Html And Css
Part 1
Basic Html
(for Us
Kids)
How To
Create Html
Page Anchors
Click A Link
And Take You
To A Certin
Place On The
Same Page
Multiple
Classes In
Html you can
use more
than one at
a time
Saint-michae
ls Html Tips
And Tricks
Issue # 2
some more
tricks of
the trade
and some
wierd stuff
to
Saint-michae
ls Html Tips
And Tricks
#4 been
awhile so
here
somewhat new
stuff
Saint
Michael
Xhtml Tips
And Tricks
#1 xhtml=
html 5.0 :P
Saint-michae
l Html Tips
And Tricks
Issue #3
exploring
meta tags
and what
uses they
have
Saint_michae
l Html Tips
& Tricks
Issue #1
useful html
stuff
Html With
Css a easy
look at CSS
Web
Programming
Tuts For The
Beginner
HTML for the
beginner
Webmaster
Level 1 The
sequel to my
smash hit
HTML
tutorial
advertisement



Simple Html Guide



 

 

 

 

ADD REPLY / Got an Opinion! Remove these ADs! RAPID SEARCH! Free Web Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE