HTML Introduction



HTML or Hyper Text Markup Language is the fundamental base of a website page. Without HTML no site can be shown. HTML is a markup language or translator based scripting language is generally designed to show website pages in internet browsers. It is exceptionally straightforward easy and simple to learn. As it is a mediator based scripting language, no compilation is needed before execution of HTML code like other compiler, for example C++, Java and so on.

HTML is written with the support of several HTML tags and element. HTML tags are some special words enclosed with angular brackets (‘<’ and ‘>’). Each tag has its own functionality and role in a HTML document.

Below have given a simple HTML code clip for creating a simple web page.



<html>

<head>

<title>Your first HTML page title</title>

</head>

<body>

Your first HTML page

</body>

</html>
 

No comments:

Post a Comment