What is html?
Write introduction of html with example?
Introduction of html
HTML stands for Hypertext Markup Language. It is a standard markup language used to create web pages and web applications. HTML is used to structure the content of a web page, and to define the meaning of the content.
Example :
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
</head>
<body>
<h1>Welcome to my website!</h1>
<p>Hello, my name is Ankit and this is my website.</p>
</body>
</html>
Comments
Post a Comment