Translate

Friday, May 2, 2014

2.HTML Introduction

HTML is the basic foundation for those who wish to become a write Web (Web Developer) should understand and learn from it and to be easy to study other subjects relating to the creation of the website (Website).
 • HTML , Hypertext Markup Language.
 • Extensions File (Extension) was completed by (. Html).
 • HTML Client Site script Browser can understand and translate back
 • ways of generating code to write space between , Tag body open and Tag True
 ( See example below )
1
2
3
4
5
6
<!DOCTYPE html>
<html>
<body>
   You write Code here…!
</body>
</html>

• Tag command is generally written between <> to Browser understand and interpret. 
 • Generally Tag HTML Tag and Tag True 

            <i> called Tag i 
            </ i> called Tag i close chamnam by a slash (/) before Name Tag 
 • Comment is used to close the HTML code to run.
1
2
3
4
5
6
7
<!DOCTYPE html>
<html>
<body>
   <p>this is using Comment</p>
  <!--<b>this is using tag b </b>-->
</body>
</html>

0 comments:

Post a Comment