Followers

Total Pageviews

Translate

Tuesday, November 12, 2019

Html

HTML

  • Hypertext Markup Language is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript
  • Developed by: WHATWG
  • Type of format: Document file format
  • Filename extension .html or .htm


Advantage of HTML

  • HTML is Easy to Learn and Use. HTML is very easy to learn and understand. ...
  • HTML is Free. ...
  • HTML is Supported by all Browsers. ...
  • HTML is the Most Friendly Search Engine. ...
  • HTML is Simple to Edit. ...
  • HTML can Integrate Easily with Other Languages. ...
  • HTML is Lightweight. ...
  • HTML is Basic of all Programming Languages
Disadvantage of HTML
  • Errors can be costly.
  • The time it takes to choose the color scheme of a page and to create lists, tables and forms.
  • It can create only static and plain pages so if we need dynamic pages then HTML is not useful.
  • Need to write lot of code for making simple webpage.

Structure Of HTML

<html>
<head>
<title> </title>
</head>
<body>
</boday>
</html>

Keyword in HTML

  • <head>
  • <title>
  • <h1>
  • <img>
  • <href>
  • <a>
  • <link>
  • <embed>
  • <body>
  • <p>
  • <br>
  • <b>
  • <table>
  • <dl>
  • <li>
  • <ul>

Example of HTML

<html>
<head>
<title> Website </title>
</head>
<body>
<p> I am Nithilan </p>
</body>
</html>

O/P :                                              website
                     I am Nithilan

No comments:

Post a Comment