+ 1
To create html you need to make a html file by opening up any text editor and saving the file as .html then have this basic template:
<doctype html>
<html>
<head>
</head>
<body>
</body>
</html>
Then open it up in a browser (will be blank). To display elements on the web page put that code in the body tag.