This tip will tell you exactly how to code your own HTML website.First, remember that most tags must be eventually closed. The syntax would be: <tag> CONTENT </tag>.Open a text editor such as notepad, or the HTML editor for your hosting service.The first tag in your website should be <html>, which starts the HTML site.Immediately after this should come the <head> tag.So far, you should have the following:<html><head>The next step is to enter the title of your website. This is what shows up in the title bar of the internet browser. Put the title between the <title> and </title>. Then, end the head with </head>. You will end up with:<html><head><title>TITLE</title></head>Other data to put into the head includes...