HTML us always located in an Index.html file.
To create html it needs to be located instead <html> </html> Making sure you're finishing the tags off with a / for the html to not error. Within the html tags you'll find <body> </body> Which will be shown like this.
Code: Select all
1. <html>
2. <body>
> Inserting text within the html body such as
> <h1>Hello There, Welcome to my website</h1>
59. </body>
60. </html>