what is html? with full form
Answers
Html is the programming language used to design and create webpages with headings, title, colours and many more things.
- Html is a hyper text markup language. [Full form].
- Html have elements which are called as building blocks of the HTML pages.
- Html includes tags which are used to create structure of the HTML pages.
- Some of the tags are <img> & <head> etc.
- HTML has the basic structure given below :-
<html>
<head>
<title> Page title </title>
</head>
<body>
<h1> First heading </h1>
<p> First paragraph </p>
</body>
</html>
Html is the programming language used to design and create webpages with headings, title, colours and many more things.
Html is a hyper text markup language. [Full form].
Html have elements which are called as building blocks of the HTML pages.
Html includes tags which are used to create structure of the HTML pages.
Some of the tags are <img> & <head> etc.
HTML has the basic structure given below :-
HTMLpagebasicstructure:
<html>
<head>
<title> Page title </title>
</head>
<body>
<h1> First heading </h1>
<p> First paragraph </p>
</body>
</html>