First of all we will want to establish what "HTML" actually stands for:
Hyper Text Markup Language.
Any HTML you will ever see will start with a basic opening tag of
. That being said every tag with the exception of a few will require a closing tag e.g
.
So now we have start
Now we will move on to your head
. The header of your document can hold many different things, but for the sake of basics we will only add the
tag, which will tell your browser what to display at the top of the actual internet browser e.g Youtube.com displays Youtube - Broadcast Yourself.
So now we have
Now to move on to the
tag, which holds all of the actual components of your code that you want to be displayed on your web page.
The body tag can have many variables added to it such as:
which will change the background color and
which will add a "tiled" background image.
So Far!
Now you have the basic HTML template for most of the web pages out on the net today!
I will soon add more tutorials breaking off from this one including:
HTML - Breaking Basics
HTML - Advanced Edition
CSS - A Beginners World
CSS - Advanced Style Sheets
jQuery - A Start to Java
jQuery - We're Movin' On Up
PHP - A Beginners Guide
PHP - Variables
PHP - Advancement
PHP - Databases and Connectivity.
STAY TUNED!
Edited by IronLotus - 6/4/12 at 2:05pm
Hyper Text Markup Language.
Any HTML you will ever see will start with a basic opening tag of
Code:
<html>
Code:
</html>
So now we have start
Code:
<html>
</html>
Now we will move on to your head
Code:
<head>
Code:
<title>
So now we have
Code:
<html>
<head>
<title>Sample</title>
</head>
</html>
Now to move on to the
Code:
<body>
The body tag can have many variables added to it such as:
Code:
<body bgcolor="#00000">
Code:
<body background="image.png">
So Far!
Code:
<html>
<head>
<title>Sample</title>
</head>
<body>
</body>
</html>
Now you have the basic HTML template for most of the web pages out on the net today!
I will soon add more tutorials breaking off from this one including:
HTML - Breaking Basics
HTML - Advanced Edition
CSS - A Beginners World
CSS - Advanced Style Sheets
jQuery - A Start to Java
jQuery - We're Movin' On Up
PHP - A Beginners Guide
PHP - Variables
PHP - Advancement
PHP - Databases and Connectivity.
STAY TUNED!
Edited by IronLotus - 6/4/12 at 2:05pm







lol

