HTML is the standard markup language used to create webpages.
HTML stands for Hyper Text Markup Language.
It is used to structure web pages using tags.
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<h1>Hello World</h1>
<p>My first webpage.</p>
</body>
</html>
HTML is beginner friendly.
Web pages load quickly.
Works with CSS & JS.