Basic introduction of HTML

HyperText Markup Language (HTML) is the language of the web. When you go to a web page in your web browser such as Internet Explorer,
Firefox, or Safari, the browser downloads and displays HTML.
At its heart, HTML is just a document, much the same as a document you’d
make in a word processor. A program like Microsoft Word is used to view
word processor documents because it knows how to read and display them.
Likewise, when it comes to the web, the web browser is the program that
knows how to read and display documents created with HTML.
Word processor documents can be created and read with a single program.
On the other hand, HTML documents need different programs for creation
and reading; you can’t create HTML documents with a browser. You create
HTML documents using a program called an editor. This editor can be as
simple as the Notepad program that comes with Microsoft Windows or as
complex as Eclipse or Microsoft Visual Studio. You can typically use the
same program to create HTML documents that you use to create PHP programs.


 A Basic Web Page

<!doctype html>
<html>
<head>
<title>My First Document</title>
</head>
<body>
<div>My Web Page Hello World</div>
</body>
</html>

name of your page content of your page
Hello World