Latest topics
Top posting users this month
No user |
Member of the Month
MoM
Want to be Member of the Month? Simply enter your name below and receive, 5000+ points, NameGlow (Any color), and A title picture!
New Network & Projects
The Basics: HTML [2007]
Supernova :: Programming :: Programming
Page 1 of 1 • Share
The Basics: HTML [2007]
----**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
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- Guru
- Posts : 31
Points : 19302
Join date : 2012-12-09
Re: The Basics: HTML [2007]
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- Operator
- Posts : 22
Points : 12531
Join date : 2013-01-06
Re: The Basics: HTML [2007]
Exactly. HTML isn't even a programming language. But I guess for those who wish to learn HTML they can start here.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.
Simuel- Presteige III
- Posts : 447
Points : 277451
Join date : 2014-07-21
"Whatever you are, be a good one."
-AL
Re: The Basics: HTML [2007]
I had actually learned from this tutorial way back when.Simuel wrote:Exactly. HTML isn't even a programming language. But I guess for those who wish to learn HTML they can start here.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.
Mellcor- Registered User
- Posts : 5
Points : 3101
Join date : 2012-12-09
Supernova :: Programming :: Programming
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum
Sat Jun 23, 2018 11:38 pm by OnyxTech
» iNBA Super Rankings (12/15/2013)
Sun Jun 17, 2018 11:48 pm by iNBA
» Tigers vs. Greats, Jeremiah Clark pours in 25 as Tigers take victory, 88-80
Sun Jun 17, 2018 11:27 pm by iNBA
» 2013-2014 Free Agent Watch
Sun Jun 17, 2018 11:11 pm by Stanley
» SAMUEL HOLLOWAY JUST SCORED 97 POINTS IN ONE QUARTER!!!
Sun Jun 17, 2018 11:10 pm by Stanley
» Drew Que of Hialeah Horizon cashes in 55 for the win over Celtics, 126-113
Sun Jun 17, 2018 11:08 pm by Stanley
» Samuel Holloway makes history with magical 106 point performance against Austin Galaxies, 183-81
Sun Jun 17, 2018 11:08 pm by Stanley
» Danny Dubb delivers 81 in win over Atlanta Hawks, 175-88
Sun Jun 17, 2018 11:06 pm by Stanley
» iNBA Super Rankings (11/17/2013)
Sun Jun 17, 2018 11:05 pm by Stanley