Stadium City
 » Splash
 » News
 » Archive
 » Jukebox
 » Staff
 » Links
 » Link To Us
 » History
 » Credits
 » Webmasters
 » Button Shop
 » Message Board
 TCG
 » View/Submit Deck
 » Neo Genesis
 » Neo Discovery
 » Neo Revelation
 » Neo Destiny
 » Neo VS
 » Pokemon Web
 » Rules
 » Basic Set
 » Starter
 » Zap
 » Over Growth
 » Black Out
 » Brush Fire
 » Jungle Set
 » Water Blast
 » Power Resever
 » Fossil Set
 » Basic2 Set
 » Rocket Set
 » Gym Heros Set
 » Southen Island Set
 » Promos
 Games
 » Stadium
 » Stadium GS
 » Puzzle
 » Snap
 » G/S
 » TCG GB
 » TCG GB2
 » Yellow
 » Pinball
 » Hey You Pikachu
 » Crystal
 [Others]
 » GBA
 » Mini
 Pictures
 » Icons 1-151
 » Icons 152-254
 » Icons Folders
 » Icons Pokéballs
 » Icons TCG GB
 Anime
 » News
 » Guide
 » Characters Bio
 » Coming up
 » Song Lyrics
 » Comics
 » Voice Cast
 » Toy`Dex
 » Movies
 Fan Stuff
 » Fan Art
 » My Art
 » Draw help
 » Fan Fiction
 » Fiction host
 Affiliates
 » Anime Universe
 » Ice Bolt
 » Pokécloud
 Others
 »
 »7/26/01-10000Hits
Information taken from Angelfire

Big Hint! Copy and Paste the top part of each sample right into your page. It's easy. Try it!

Info on tables!!!

Q: What's the basic HTML set up for a new page?

In order to set up your page for building, you will want to start with the following tags. First, you want to let the computer know that you're writing an HTML document. The most important lesson to learn in HTML is you need to close all of your tags, so make sure you end your page with the closing tag.

The first tag you should enter in is
<HTML>.
Your page will go here...
</HTML>
Is the closing tag.

If you want to include meta tags and other information that is not visible on your page, but can be looked at by search engines, use these tags.

<head>
put your meta tags here
</head>

All the rest of your HTML should have these tags around it.
<body>

</body>

So, the basic layout of your page should be something like this.

<HTML>
<HEAD>
<META Name="description" Content="the coolest page in the world" >
<META Name="keyword" Content="fun, cool stuff, chat" >
</HEAD>
<BODY>
Hi!
This is my homepage. It is still under construction, so please be patient.
</BODY>
</HTML>

Q: What are some of the basic HTML tags?

<hr> draws a horizontal line


<br> carriage return
<p> starts a new paragraph

Q: How do I place a title on my page?

To place your page title in the blue bar at the top of your browser.

<title>my title</title>

Q: How do I center my text?

<center>
This will center a region of text or images, etc.
</center>

This will center a region of text or images, etc.

Q: How do I change my text size?

<font size="1">Font size 1 </font>
Font size 1
<font size="2">Font size 2 </font>
Font size 2
<font size="3">Font size 3 </font>
Font size 3
<font size="4">Font size 4 </font>
Font size 4
<font size="5">Font size 5 </font>
Font size 5

Q: How do I change the color of my text?

<font color="blue">Blue Text </font>
Blue Text
<font color="red">Red Text </font>
Red Text
<font color="yellow">Yellow Text </font>
Yellow Text

Q: How do I make my text bold or italic?

<b> This will make a region of text bold </b>
This will make a region of text bold

<i> italic letters </i>
italic letters

Q: Isn't there another way to make text bigger and smaller?

If you want your text to be different sizes, you can also use the heading tags.
<h1> Heading size 1 </h1>

Heading size 1

<h2> Heading size 2 </h2>

Heading size 2

<h3> Heading size 3 </h3>

Heading size 3

Q: How do I use different fonts?

<font face="Helvetica">Helvetica font </font>
Helvetica font
<font face="New Century Schoolbook">New Century Schoolbook font </font>
New Century Schoolbook font
<font face="Lucida">Lucida font </font>
Lucida font

Q: How do I align my text with a graphic?

Top align:
<img src="a2_logo.gif" align=top> load an image with this text centered vertically to the middle of the image</img>

load an image with this text aligned to the top of the image


Center align:
<img src="a2_logo.gif" align=center> load an image with this text aligned to the middle of the image</img>

load an image with this text centered vertically to the middle of the image


Top align:
<img src="a2_logo.gif" align=bottom> load an image with this text centered vertically to the middle of the image</img>

load an image with this text aligned to the bottom of the image

Get a description of how to code Angelfire's General Graphics as well as your own, uploaded graphics here.

Q: How do I create links?

<a href="/doc/faq.html"> create a link to another page on the same server</a>
create a link to another page on the same server

<a href="https://www.lycos.com/addasite.html"> create a link to another page on another server</a>
create a link to another page on another server

Q: How do I turn a picture into a link?

The first URL in quotes is the address to link to, the second is the graphic location.

<a href="http://www.angelfire.com"> <img src="a2_logo.gif"> </a>

Q: How can I have a picture link to an e-mail address?

Copy and paste the following HTML. Notice that this is using an image that lives in the www.angelfire.com/images directory - the image is not in YOUR images subdirectory, but in the images subdirectory used for all the Angelfire Graphics Library graphics.

<a href="mailto:email@angelfire.com"> <img src="https://www.angelfire.lycos.com/doc/images/icons/mailbox.gif" border=0> </a>


Q: How do I make blinking text?

<blink> make text blink </blink>
make text blink

Q: How do I make preformatted text?

<pre>
turn
on fixed
width font with preformatted text
</pre>

turn on fixed width font with preformatted text

Q: How do I make an unnumbered list?

<ul>
<li> list item 1
<li> list item 2
</ul>

Q: How do I make a numbered list?

<ol>
<li> pc
<li> mac
</ol>

  1. pc
  2. mac

Q: How do I make a nested list?

<ul>
<li>list
<ul>
<li>nested
<ul>
<li>twice
</ul>
</ul>
</ul>

Q: How do I put my text in a block?

<blockquote>
This will quote a block of text as a separated paragraph like this, indented on both the left and right sides. You may also put other codes inside the blockquote as well, such as this bold, italicized link to point you to
<b><i><a href="/doc/teach.html"> other HTML resources which you haven't found here.</a></i></b>
</blockquote>

This will quote a block of text as a separated paragraph like this, indented on both the left and right sides. You may also put other codes inside the blockquote as well, such as this bold, italicized link to point you to other HTML resources which you haven't found here.

Q: Why should I end my filename with .html or .htm?

If you do not end your filename with '.html' or '.htm', it is possible that your Web browser will not display the file properly.

Q: What characters are illegal in a filename?

You can only use one period (.) in your filename. Also, characters like $, !, @, and ? are illegal. Please use only alphanumeric characters.

Site hosted by Angelfire.com: Build your free website today!