HTML[HYPERTEXT MARKUP LANGUAGE]:
HTML stands for hypertext markup language.It is used for making website dynamically.You can create website using html,css,javascript etc.
Basic example of html->
<html>
<head>
<title></title>
</head>
<body></body>
</html>
HTML starts with opening tag<html> and closed with also </html>.After this head starts,it contains title.After title,body stats.in body tag you can write your whole program.In Body tag,you can define your heading and paragraph.for example->
<html>
<head>
<title>facebook</title>
</head>
<body>
<h1>Heading</h1>
<p>Paragraph</p>
</body>
</html>
We will cover more in next post.Till now,thankyou.Like and share this Post.


No comments:
Post a Comment