CodeLab
Tutorials For Everyone
Run
<!Doctype HTML> <html> <head> <title>HTML Basics</title> </head> <!--The Content after this tag is visible--> <body> <!-- Heading--> <h2>HTML Heading</h2> <!-- This is a paragraph--> <p>This is a HTML paragraph element. There may be unlimited numbers of paragraph in a document. We can write an HTML paragraph by using this <p> element.</p> </body> </html>