In this tutorial you will learn how easy it is to create an HTML document or a web page. To begin coding HTML you need only a simple-text editor and a web browser.
Lets get started with creating your first HTML page.
<!DOCTYPE html>
<html lang="en">
<head>
<title>A simple HTML document</title>
</head>
<body>
<p>Hello World!<p>
</body>
</html>
To open the file in a browser. Navigate to your file then double click on it. It will open in your default Web browser. If it does not, open your browser and drag the file to it.