hi friends , today am starting a new series called HTML TUTORIAL SERIES
First of all what is Html ?
HTML - HYPER TEXT MARKUP LANGUAGE
and its used for Designing the web and it was invented by Sir Tim Berners-Lee
now in this series , i will try to teach basics of html
Tools needed
A text editor - i recommend Notepad ++ - which you can Attachment from here - http://www.notepad-plus-plus.org
--------------------------------------------------------------------------------------------------
Setting up the environment
BASIC SETUP
-------------
First things first type in this code to start up with
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
</head>
<body>
</body>
</html>
---------------------------------------------------------------------------------------------------
ok friends , this is it for this tutorial
Part 2 on HTML Tags
First of all what is Html ?
HTML - HYPER TEXT MARKUP LANGUAGE
and its used for Designing the web and it was invented by Sir Tim Berners-Lee
now in this series , i will try to teach basics of html
Tools needed
A text editor - i recommend Notepad ++ - which you can Attachment from here - http://www.notepad-plus-plus.org
--------------------------------------------------------------------------------------------------
Setting up the environment
- open up notepad ++
- go to File>New
- go to Language > HTML
BASIC SETUP
-------------
First things first type in this code to start up with
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
</head>
<body>
</body>
</html>
---------------------------------------------------------------------------------------------------
ok friends , this is it for this tutorial
Part 2 on HTML Tags