How To Create A Basic Web Page in HTML


Go Back

The firstthing you will need to do is make a HTML element this begins and end s the HTML document. This element would be wriiten as
To start the page you will need to usr the HTML tags which look like this.
<html></html>
Once you have done this you will need to apply the header tags which go inside of the HTML tags and look like this.
<html><head></head></html>

Next, you will give this page a tile, and within the tilte elements you will need to put the name of the web page.
<html><head><title>My basic web Page<title></head></html>