Site Statistics
 
Threads: 3,907
Posts: 17,132
Members: 2,912
Users Online: 17
Newest Member: Swordso4


Go Back   PC101 > Discussion, News, & Tutorials > Tutorials and How-To...

Tutorials and How-To... Learning something new is just a click away! Provided to you by members and staff.


Reply
 
LinkBack Thread Tools Display Modes
Old 10-23-2006, 06:32 PM   #1
Member
 
crafterz's Avatar
 
Join Date: Oct 2006
Location: USA! USA! USA!
Posts: 141
Rep Power: 2 crafterz is on a distinguished road
Send a message via AIM to crafterz Send a message via MSN to crafterz Send a message via Yahoo to crafterz
Introduction - Basic HTML

HTML...What does that mean you may ask. Hyper Text Markup Language = HTML
Its what webpages are made of. Here ill teach you just the basic of the basics.


HTML Code:
<html> <head> <title>Title of the page</title> </head> <body>
This is where the text goes.
</body> </html>
Ok, now lets break this down to be easier to understand.

the first and last tage with <html> and </html> are the beggining and ending tags of EVERY html page.
<head> & </head> are the header tags, used for things such as Meta Tags Which are more advanced. The title tags <title> & </title> are the title tags, or what will appear at the top of the browser, these always go in the head tags. The Body Tags are Where the main body of your page goes. This could include many things, but for now, we will leave it at Text.

Now lets Practice This...How so? Open Notepad...Click start run type notepad and push enter. Then Do the same tags as i did. and then click save as. When typing the filename, type FILENAME.htm than click save. Then open up your favorite web browser and click...file, open file, find the file you just saved and click open.... at the top of the browser it should sayTitle of the page, and on the page it should just say This is where the text goes.

More to come soon...

If you have any question or comments, fell free to post them
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Last edited by crafterz; 10-23-2006 at 07:45 PM. Reason: Incorrectness of the Title
crafterz is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-23-2006, 07:01 PM   #2
Valued Member
 
firestorm's Avatar
 
Join Date: Jan 2006
Location: US of A!
Posts: 777
Rep Power: 3 firestorm is on a distinguished road
Send a message via AIM to firestorm Send a message via MSN to firestorm
rep added.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Registered Linux user #403288
firestorm is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-23-2006, 07:26 PM   #3
Member
 
crafterz's Avatar
 
Join Date: Oct 2006
Location: USA! USA! USA!
Posts: 141
Rep Power: 2 crafterz is on a distinguished road
Send a message via AIM to crafterz Send a message via MSN to crafterz Send a message via Yahoo to crafterz
Thnx !!! More to come in the near future!
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
crafterz is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-24-2006, 04:13 PM   #4
Distinguished Member
 
Join Date: Jul 2005
Posts: 2,208
Rep Power: 6 Will.Spencer is on a distinguished road
Quote:
Originally Posted by crafterz
Thnx !!! More to come in the near future!
It's a great start. Next, you will probably want to go into the most common tags:
  • <p>
  • <br>
  • <b>
  • <i>
  • <hr>
  • <a href=""></a>
  • <ul> and <li>
Will.Spencer is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-24-2006, 06:26 PM   #5
Forum Staff
 
Lyte's Avatar
 
Join Date: Oct 2005
Location: Good ol' U.S. of A
Posts: 3,223
Rep Power: 6 Lyte is on a distinguished road
Send a message via MSN to Lyte Send a message via Yahoo to Lyte Send a message via Skype™ to Lyte
Quote:
Originally Posted by Will.Spencer
It's a great start. Next, you will probably want to go into the most common tags:
  • <p>
  • <br>
  • <b>
  • <i>
  • <hr>
  • <a href=""></a>
  • <ul> and <li>
But what do they mean? How do you use them?

Lyte
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Lyte is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-24-2006, 07:10 PM   #6
Valued Member
 
firestorm's Avatar
 
Join Date: Jan 2006
Location: US of A!
Posts: 777
Rep Power: 3 firestorm is on a distinguished road
Send a message via AIM to firestorm Send a message via MSN to firestorm
<p> defines a paragraph

<br> used to end a line, but not start a new paragraph

<b> bold

<i> Italics

<hr> horizontal rule (can be used to seperate images, content, and other stuff, and can vary in size easily)

<a href=""></a> the "a" defines an anchor(secures it to the page, is an easy way to look at it for now). "href="link goes here" the href just creates a link.
HTML Code:
<p>Linking to PC101:
<a href="http://www.pc101.com">
PC101 ROCKS</a> </p>
Will look something like this:

Linking to PC101:
PC101 ROCKS

<ul> unordered list (means no number scheme involved).
<li> represents one individual in the list of <ul>
SAMPLE
HTML Code:
 <UL> <LI> This is item number 1.
    <LI> This is item number 2.
    </UL>
**Just remember that all <>(tags) must get closed in the document. To close them just use the same tag with a / in them. EX- </ul> </b>

-fire
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Registered Linux user #403288
firestorm is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-24-2006, 07:23 PM   #7
Member
 
crafterz's Avatar
 
Join Date: Oct 2006
Location: USA! USA! USA!
Posts: 141
Rep Power: 2 crafterz is on a distinguished road
Send a message via AIM to crafterz Send a message via MSN to crafterz Send a message via Yahoo to crafterz
i was gonna spend a lot on anchor
and all its attributes
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
crafterz is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-24-2006, 08:04 PM   #8
Valued Member
 
firestorm's Avatar
 
Join Date: Jan 2006
Location: US of A!
Posts: 777
Rep Power: 3 firestorm is on a distinguished road
Send a message via AIM to firestorm Send a message via MSN to firestorm
go right ahead, I didn't feel like gettin into that then .
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Registered Linux user #403288
firestorm is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-25-2006, 09:51 PM   #9
Forum Staff
 
Lyte's Avatar
 
Join Date: Oct 2005
Location: Good ol' U.S. of A
Posts: 3,223
Rep Power: 6 Lyte is on a distinguished road
Send a message via MSN to Lyte Send a message via Yahoo to Lyte Send a message via Skype™ to Lyte
Good job y'all!

It's helps demonstrate what the code does. That's how I learned.... what lil I know. lol

Lyte
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Lyte is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Dynamic HTML Pages peeling Software Development 7 12-05-2006 05:57 AM
CSS: Generate a CSS layout for your site OulZac Web Design and Development 7 07-06-2006 05:33 PM
Slicing to HTML parag2006 Web Design and Development 2 06-15-2006 11:19 AM
Making your own web browser in Visual Basic imported_krish Software Development 3 06-05-2006 06:10 PM
Changing a web site from HTML to ASP bluent Web Design and Development 1 11-14-2005 06:17 AM



All times are GMT -5. The time now is 07:52 PM.

Powered by vBulletin Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC5