xFactorSchool.com(Beta)
How to Do Examples
Python Examples
HTML Examples
Code Examples
C Code Examples
C++ Code Examples
C# Code Examples
Java Code Examples
Python Code Examples
HTML Code Examples
CSS Code Examples
JavaScript Code Examples
Online Editor
C Code Editor
C++ Code Editor
C# Code Editor
Java Code Editor
Python Code Editor
HTML Code Editor
CSS Code Editor
JavaScript Code Editor
Practice how to create a simple webpage using HTML
HTML Online Editor
Run Code
More HTML Sample Codes
<!DOCTYPE html> <html lang="en"> <head> <title>Simple webpage</title> <!-- Title of the page--> </head> <body> <!-- elements of the body will be displayed --> <h1>Simple webpage</h1> <!-- header--> <p>This is a simple webpage created using HTML.</p> <!-- paragraph--> </body> </html>