To start with, first thing to do is to pick your fav text editor. I will be using VS code throughout the entire journey.
Apart from VS code, we also need 2 extensions to help us code HTML more efficiently:
Now create a new HTML file called index.html
(Note: index
indicates home page)
First thing to type after creating a HTML file is :
<!DOCTYPE html>
<html>
<!-- To be continue... -->
</html>
Note:
DOCTYPE
represents HTML 5 Document Type DecorationDOCTYPE
and doctype
will work<html>
and closing tag </html>