HTML stands for Hypertext Markup Language, enabling you to create online documents that can be read through your web browser.
"Markup" refers to the the marking tags that dictate how the content appears. The tags for a simple HTML document are as follows:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>
The Headline
</h1>
<p>here an <b>
bold example</b> of a webpage.</p>
</body>
</html>
Thank You For Your Vote!
Sorry You have Already Voted!