Previous Thread
Next Thread
Print Thread
Rate Thread
#18447 12/11/02 02:33 PM
Joined: Sep 2002
Posts: 71
Junior Member
OP Offline
Junior Member
Joined: Sep 2002
Posts: 71
What does HTML stand for?
HTML = Hypertext Markup Language

What does "hypertext" mean?
Text stored in electronic form with cross-reference links between pages.

Can you create Web pages with Microsoft Word or WordPerfect?
Yes, you can use them. You can also use Notepad, which is mostly and commonly used.

What are the two parts of an HTML command?
Closing tag and Opening tag

Which tags should enclose the entire document?
Code
<HTML> ... </HTML>
Basic Website Coding
When making your first webpage, these tags (ex: <tag></tag>) most be included to make you HTML file a success!
Code
<HTML>
<HEAD>
<TITLE>My First Web Page</TITLE>
</HEAD>
<BODY>Your Content...</BODY>
</HTML> 
Other Tags Within HTML Document
There are many more tags that you can use to enhance the look of your website.

[code]
Adding Text Color: <font color="color">
Adding Text Size: <font size="size">
Adding Text Style: <font size="style">
Bolding Text: <b>TEXT</b>
Italizing Text: <i>TEXT</i>
Underlining Text: <u>TEXT</u>
Strong Text: <strong>TEXT</strong>
Align A Paragraph: <p align="right,center,left">
Links: <a href="link_name.html">NAME</a>
Mailing Links: <a href="mailto:[email protected]">TEXT</a>
Spacing:

[code]
Please note, these are just the basics of HTML and what it can do. No one, except you is repsonible for the use and content of your HTML file.

Also [code] isn't a real html tag, so please don't take it as one. Its there because the post won't correctly display information if I end it. Sorry!

For more information and codes please visit Webmonkey CheatSheet For HTML

#18448 12/17/02 10:49 PM
Joined: Mar 2002
Posts: 574
Likes: 1
C
UGN GFX Whore
Offline
UGN GFX Whore
C
Joined: Mar 2002
Posts: 574
Likes: 1
Also note,
is a line break tag, like adding a return to the page.

Other HTML editing tools:
Notetab, the notepad replacement. http://www.notetab.com
It is a basic text editor with some extra html features, and also has a tabbed multiple document thing.

There are some WYSIWIG (what you see is what you get) editors out there. Frontpage is one made by microsoft and comes with MS Office. It adds way too much code for things that are very easy to do. Word XP adds a ridiculous amount of code to a page, and I do not recommend anyone use it to make webpages.

Dreamweaver is the most popular among designers. It is more of an advanced editor. I don't have much experience with Dreamweaver, but I am pretty sure it doesn't add a bunch of gay unnecessary code.

After you get the basics of html down, another important skill is tables. Tables are used for aligning things in webpages, ot just adding a look.

You start the table with the table tag, use a table row tag, then a table data tag, and end it all.

Example:

Code
<table>
  <tr>
    <td>content here
    </td>
  </tr>
</table>
Table starts the table.
tr is a table row. All td's inside a table row tag are on one row. So, if you want to have several cells on top of each other, you have to have several table rows with table data's inside them.
td is a table data tag. All the content in a table needs to go inside one of these, or it will throw off everything. These always go inside a table row.

Then there are properties to those tags.
here is how it works:

Code
<table width=100% height=200 cellpadding=0 cellspacing=4 border=1 bordercolor=ffffff bgcolor=000000>
  <tr>
    <td bgcolor=555555 bordercolor=ff00ff align="center" valign="top" width=100%>some stuff
    </td>
  </tr>
</table>
Width can be in either percent or pixels. if it is in pixels, you only need to use the number, but percent must have the % after it.
Height isn't necessary, but works the same way as width, except it is verticle.
Cellpadding is the amount of space between the edge of the cell (td) and the text or images inside it.
Cellspacing is the amount of space between each cell (td).
Border is the width in pixels of the border. 1 is the most popular, but depending on your design others can look good.
Bordercolor is the color of the border. As always, you can use either hexcodes or color names. Hex codes are best because you can get an exact color, but it can be hard to get right. Color names like "orange" or "silver" will work, but I am pretty sure "Macaroni" won't. To learn avbout hex codes, check the links at the end of this post.
Bgcolor is the background color of the whole table. The colors work the same as everything in html just like the bordercolor.
Align can align everything in a td. Your options are "left", "center", or "right."
Valign aligns things in the td vertically. Your options are "top", "middle", and "bottom."

Hexcodes for colors
http://hotwired.lycos.com/webmonkey/reference/color_codes/
*note - it is not necessary to include the # in front of colors. color=#ffffff would work the same as color=ffffff.
Notetab
http://www.notetab.com
HTML Goodies (great site for learning html
http://www.htmlgoodies.com
Webmonkey (great site for html, web languages, general internet stuff)
http://www.webmonkey.com
HTML Goodies Tables
http://www.htmlgoodies.com/tutors/tbl.html

#18449 12/18/02 05:04 PM
Joined: Dec 2002
Posts: 3,255
Likes: 3
UGN Elite
Offline
UGN Elite
Joined: Dec 2002
Posts: 3,255
Likes: 3
http://rrfn.promodtecnologies.com/K-base/Into_to_html.html

I wrote this a little over a year ago. heh, HTML lesson writen in HTML. It was a pain in the [censored] to do so READ IT. laugh

#18450 12/18/02 05:07 PM
Joined: Dec 2002
Posts: 3,255
Likes: 3
UGN Elite
Offline
UGN Elite
Joined: Dec 2002
Posts: 3,255
Likes: 3
http://rrfn.promodtecnologies.com/K-base/characters.html

© ® ™ § ¿ æ

Use the link above to get some special charaters.

#18451 12/18/02 08:17 PM
Joined: Mar 2002
Posts: 574
Likes: 1
C
UGN GFX Whore
Offline
UGN GFX Whore
C
Joined: Mar 2002
Posts: 574
Likes: 1
lol. Is someone drinking? oh wait, i'm just hearing plug plug plug plug...

smile

#18452 12/19/02 03:52 AM
Joined: Dec 2002
Posts: 3,255
Likes: 3
UGN Elite
Offline
UGN Elite
Joined: Dec 2002
Posts: 3,255
Likes: 3
If anything I am pluging gizys other site. heh


Link Copied to Clipboard
Member Spotlight
Posts: 30
Joined: June 2002
Forum Statistics
Forums41
Topics33,840
Posts68,858
Average Daily Posts1
Members2,176
Most Online3,253
Jan 13th, 2020
Latest Postings
Where and how do you torrent?
by danni75 - 03/01/24 05:58 AM
Animation,
by JohanKaariainen - 08/15/19 01:18 AM
Blackbeard.....
by Gremelin - 10/03/18 07:02 PM
my old account still exists!
by Crime - 08/10/18 02:47 PM
Okay WTF?
by HenryMiring - 09/27/17 01:45 AM
The History Thread...
by Gremelin - 08/11/17 12:11 PM
My friend NEEDS your HELP!
by Lena01 - 07/21/17 12:06 AM
I'm having fun with this guy.
by gabithompson730 - 07/20/17 01:50 AM
I want to upgrade my phone
by gabithompson730 - 07/20/17 01:49 AM
Doom 3
by Cyrez - 09/11/14 08:58 PM
Amazon Gift Card Generator/KeyGen?te
by Gecko666 - 08/22/14 09:21 AM
AIM scene 99-03
by lavos - 09/02/13 08:06 AM
Planetside 2
by Crime - 03/04/13 07:10 AM
Beta Testers Wanted
by Crime - 03/04/13 06:55 AM
Hello Everyone
by Gremelin - 02/12/12 06:01 PM
Tracfone ESN Generator
by Zanvin Green - 01/18/12 01:31 PM
Python 3 issue
by Testing - 12/17/11 09:28 PM
tracfone airtime
by Drache86 - 07/30/11 03:37 AM
Backdoors and the Infinite
by ZeroCoolStar - 07/10/11 03:52 AM
HackThisZIne #12 Releaseed!
by Pipat2 - 04/28/11 09:20 PM
gang wars? l33t-wars?
by Gremelin - 04/28/11 05:56 AM
Consolidate Forums
by diggin2deep - 04/21/11 10:02 AM
LAN Hacking Noob
by Gremelin - 03/12/11 12:42 AM
Top Posters
UGN Security 41,392
Gremelin 7,203
§intå× 3,255
SilentRage 1,273
Ice 1,146
pergesu 1,136
Infinite 1,041
jonconley 955
Girlie 908
unreal 860
Top Likes Received
Ghost 2
Crime 1
Ice 1
Dartur 1
Cyrez 1
Powered by UBB.threads™ PHP Forum Software 7.7.5