What is HTML
HTML
(Hyper Text Markup Language) is Client-Side Scripting Language. HTML used to
create a web page and web application. An HTML is Not a Programming Language
but is a markup Language. We will use Noted, Sublime, etc any text editor used
writer HTML. HTML File executed in any web browser. HTML is simple and easy
Language. It can easy to understand and modify.
For example
- <!DOCTYPE HTML>
- <html>
- <head>
- <title>HTML Demo</title> // title
- </head>
- <body>
- <h1>Hello World</h1> // this tag used for heading tag.
- <p> This is Paragraph Tag</p> // this tag used for paragraph.
- </body>
- </html>
<html>,
</html> is Describes the web page and web application.
<title>, </title> is defines the title of Documents.
<body>, </body> is Describes the web Page content.
<title>, </title> is defines the title of Documents.
<body>, </body> is Describes the web Page content.
HTML Headings
HTML
Headings defined the <h1> to <h6>
Example
<h1>
Heading tag 1 </h1>
<h2> Heading tag 2 </h2>
<h3> Heading tag 3 </h3>
<h4> Heading tag 4 </h4>
<h5> Heading tag 5 </h5>
<h6> Heading tag 6 </h6>
<h2> Heading tag 2 </h2>
<h3> Heading tag 3 </h3>
<h4> Heading tag 4 </h4>
<h5> Heading tag 5 </h5>
<h6> Heading tag 6 </h6>
List of HTML Tag
<a>
<b>
<p>
<ul>
<li>
<img>
<html>
<body>
<head>
<table>
<button>
<header>
<b>
<p>
<ul>
<li>
<img>
<html>
<body>
<head>
<table>
<button>
<header>
Advantages of HTML
-
Easy to create a webpage.
- Easy to Customising Document.
- Simple to edit HTML.
- HTML is Totally free.
- HTML is User Friendly.
- It is platform independents.
- Any Browser supports.
- Easy to Customising Document.
- Simple to edit HTML.
- HTML is Totally free.
- HTML is User Friendly.
- It is platform independents.
- Any Browser supports.
Disadvantages of HTML
-
Lots of code to make simple web pages.
- less security.
- there are some security issues using HTML.
- all brewers don't render the HTML codes the same.
- less security.
- there are some security issues using HTML.
- all brewers don't render the HTML codes the same.
No comments: