Introduction of HTML
Introduction of HTML
- It is a “core part of web programming.
- It stand for “ hyper text markup language”.
- It was developed by “ Tim Berners lee”.
- Its main objective to developed ‘static web page’. This type of web page can not be change automatically.
- It is not programming language because we can not perform any arithmetic operation on web page. So we can say that is only designing tool.
- Its file extension is “.html or .htm”.
- It is an interpreter based language because it can be executed with the help of web browser.
- It is case insensitive programming language.
- It is open source technology so it is free to use.
- It is platform independent because it can be executed on different operating system as windows, mac, unix etc.
- It can be imbeded in to server sided programming language as PHP,JSP(java server page) ASP.net etc.
Dis-advantage of html
- It not secure because we can view source code of any web page after right clicking.
- Its execution is slow due to “interpreter”.
- It can not perform any arithmetic and logical operation.
- Some browser do not support all tag of html.
Some text editor use to write html code.
Notepad.
Notepad++.
Dream weaver.
Bracket
Structure of html
<html> -> root tag
<head> <title> welcome to html </title>
</head>
<body>
Content of web page.....................
</body>
</html>
<html>:- Describe the document of web page.
<head>:- Describe the head section of web page.
<body>:- Describe the content of web page.
<html>
<head> <title> simple</title>
</head>
<body>
Welcome to html.
</body>
</html>
note-
It must be saved with the help of (.html or ,htm) extention.
Eg; d:\html\welcome to html.html
i hope this post is useful for you!
thank you!
Very good
ReplyDeleteThank u
Delete