HTML — What is HTML?
HTML stands for HyperText Markup Language. It is the standard language used to create web pages. HTML describes the structure of a webpage using elements and tags.
Tags are written inside angle brackets like <tagname>
. Most HTML tags have an opening and a closing tag.
<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
</head>
<body>
Hello, World!
</body>
</html>