Latest topics
» iChat 2.0 - A New Way to Chat!
The Basics: HTML [2007] EmptySat Jun 23, 2018 11:38 pm by OnyxTech

» iNBA Super Rankings (12/15/2013)
The Basics: HTML [2007] EmptySun Jun 17, 2018 11:48 pm by iNBA

» Tigers vs. Greats, Jeremiah Clark pours in 25 as Tigers take victory, 88-80
The Basics: HTML [2007] EmptySun Jun 17, 2018 11:27 pm by iNBA

» 2013-2014 Free Agent Watch
The Basics: HTML [2007] EmptySun Jun 17, 2018 11:11 pm by Stanley

» SAMUEL HOLLOWAY JUST SCORED 97 POINTS IN ONE QUARTER!!!
The Basics: HTML [2007] EmptySun Jun 17, 2018 11:10 pm by Stanley

» Drew Que of Hialeah Horizon cashes in 55 for the win over Celtics, 126-113
The Basics: HTML [2007] EmptySun Jun 17, 2018 11:08 pm by Stanley

» Samuel Holloway makes history with magical 106 point performance against Austin Galaxies, 183-81
The Basics: HTML [2007] EmptySun Jun 17, 2018 11:08 pm by Stanley

» Danny Dubb delivers 81 in win over Atlanta Hawks, 175-88
The Basics: HTML [2007] EmptySun Jun 17, 2018 11:06 pm by Stanley

» iNBA Super Rankings (11/17/2013)
The Basics: HTML [2007] EmptySun Jun 17, 2018 11:05 pm by Stanley

Most active topic starters
Kernel
The Basics: HTML [2007] I_vote15The Basics: HTML [2007] I_voti11The Basics: HTML [2007] I_vote16 
OnyxTech
The Basics: HTML [2007] I_vote15The Basics: HTML [2007] I_voti11The Basics: HTML [2007] I_vote16 
iNBA
The Basics: HTML [2007] I_vote15The Basics: HTML [2007] I_voti11The Basics: HTML [2007] I_vote16 
Alex
The Basics: HTML [2007] I_vote15The Basics: HTML [2007] I_voti11The Basics: HTML [2007] I_vote16 
Bedbed
The Basics: HTML [2007] I_vote15The Basics: HTML [2007] I_voti11The Basics: HTML [2007] I_vote16 
Cyber
The Basics: HTML [2007] I_vote15The Basics: HTML [2007] I_voti11The Basics: HTML [2007] I_vote16 
Combz
The Basics: HTML [2007] I_vote15The Basics: HTML [2007] I_voti11The Basics: HTML [2007] I_vote16 
Teh Can
The Basics: HTML [2007] I_vote15The Basics: HTML [2007] I_voti11The Basics: HTML [2007] I_vote16 
Raymond
The Basics: HTML [2007] I_vote15The Basics: HTML [2007] I_voti11The Basics: HTML [2007] I_vote16 
Free
The Basics: HTML [2007] I_vote15The Basics: HTML [2007] I_voti11The Basics: HTML [2007] I_vote16 

Top posting users this month
No user

Member of the Month
Winner MoM Want to be Member of the Month? Simply enter your name below and receive, 5000+ points, NameGlow (Any color), and A title picture!
Username:
New Network & Projects

The Basics: HTML [2007]

View previous topic View next topic Go down

The Basics: HTML [2007] Empty The Basics: HTML [2007]

Post by Stanley Wed Nov 20, 2013 11:18 pm

----**LET ME FIRST SAY**
This is very very very very very old tutorial. This tutorial is way back on the old TTX archive. If you want to criticize, feel free to do so. But I want to disclaim this immediately.


Hello, Stanley here.
I will teach the art of HTML, how to use it, and what it is generally.
First, What is HTML?
HTML is a markup language, not exactly a programming language.
It's exactly what makes up a webpage.
_________________________________________________________________________________________________________
Part 1. HTML Basics

The key starter to make an HTML page and actually get to test it is finding good web browsers to handle it.
My choices would be:
IE(Internet Explorer 8 or 9)
FF(Firefox Version 5 or 6)
Chrome(Version 1)

Anyway, lets move on.
The first thing you need to do to start and HTML web page is start with the html tag, witch in this case is <html>.
Now, this tag <html>, is kind of like your starter tag. It starts the HTML page and ends the HTML page.
Now to end an HTML page you would put this </html>. the / in </html> defines the HTML web page when to stop the page, without it, the page would go on forever. Then you have you headers, never heard of them? Headers are what define the header part of your HTML page. The header tags for you HTML page would be <head> and </head>
So, If we were to put these to tags together, it would make something like this:

HTML Code:

<html>
<head> Welcome to the test page </head>
</html>

What it looks like from the browser:

Welcome to the test page

______________________________________________________________________________________________________

Part 2. Paragraphs and Breaks and Body

Now, the reason why I separated the basic tags with Paragraphs, is because this tag has more then one name.
The tags for paragraphs in a HTML page could be <p1></p1>, <p2></p2>, <p3></p3> etc.
p1 means the first paraghraph, and obviously you know what the other numbers mean.

Now let's see what you've learned, Check out this code

<html>
<head> Welcome to the test page </head>
<p1> This is where you can test anything you want! </p1>
<p2> All the fun right here! </p2>
</html>

You see how it the code gets bigger? It means we're adding more to the page.

The body is whats the middle of your page, mostly it is 50% of your content in your whole webpage.
The body supports the paragraphs, and also programming languages like PHP and JS.
So, the tags for the body, obviously is <body>&</body>
Now look at this.

<html>
<head> Wlecome to the test page! </html>
<body>
<p1> Where you can test all you want! </p1>
<p2> All you can do right here! </p2>
</body
</html>

You see? I hope so, I can't do this in brail Sad
Now for the breaks, breaks is what I call them the tags are <br>&</br>
In an HTML page, You can't just type something and it will show up, You either have to use the tags above, or <br></br>
Ok, Now that you've learned the basic HTML commands.
It's your time to experiment. Cool

<html>
<head>Welcome to page</head>
<br> The best there is!</br>
<body>
<p1> All you need here! </p1>
<p2> Everything you can get </p2>
</body>
<br> Check out our pages sometime. </br>
</html>

Alright, Bye guys. !cool
Stanley
Stanley
Guru
Guru

Posts Posts : 31
Points Points : 19302
Join date Join date : 2012-12-09

Back to top Go down

The Basics: HTML [2007] Empty Re: The Basics: HTML [2007]

Post by Megatron Mon Nov 25, 2013 6:27 pm

For 6 years ago this is pretty good tutorial. But I don't see why someone would need a tutorial on markup language that is self explanatory.
Megatron
Megatron
Operator
Operator

Posts Posts : 22
Points Points : 12531
Join date Join date : 2013-01-06

Back to top Go down

The Basics: HTML [2007] Empty Re: The Basics: HTML [2007]

Post by Simuel Thu Jul 24, 2014 2:58 am

Megatron wrote:For 6 years ago this is pretty good tutorial. But I don't see why someone would need a tutorial on markup language that is self explanatory.
Exactly. HTML isn't even a programming language. But I guess for those who wish to learn HTML they can start here.
Simuel
Simuel
Presteige III
Presteige III

Posts Posts : 447
Points Points : 277451
Join date Join date : 2014-07-21

"Whatever you are, be a good one."
-AL


Back to top Go down

The Basics: HTML [2007] Empty Re: The Basics: HTML [2007]

Post by Mellcor Thu Jul 24, 2014 3:06 am

Simuel wrote:
Megatron wrote:For 6 years ago this is pretty good tutorial. But I don't see why someone would need a tutorial on markup language that is self explanatory.
Exactly. HTML isn't even a programming language. But I guess for those who wish to learn HTML they can start here.
I had actually learned from this tutorial way back when.
Mellcor
Mellcor
Registered User
Registered User

Posts Posts : 5
Points Points : 3101
Join date Join date : 2012-12-09

Back to top Go down

The Basics: HTML [2007] Empty Re: The Basics: HTML [2007]

Post by Sponsored content


Sponsored content


Back to top Go down

View previous topic View next topic Back to top


Permissions in this forum:
You cannot reply to topics in this forum