What is HTML?
HTML stands for Hypertext Markup Language. This is the standard markup language used to create webpages. Here is an example of how HTML is used to define a very basic webpage with a title and a paragraph of text:
<!doctype html>
<html>
<head>
<title>This is a title</title>
</head>
<body>
<p>This is a paragraph.</p>
</body>
</html>