1. Setup and getting Started
- Download VS code for your machine.
- Add HTML Snippets extension.

- Add live server extension.

- Create a folder named “Basics of HTML”

- Create an HTML file : index.html

- On the bottom right click on go live

Output

2. Basic HTML tags and Resources:
2) mdn
let’s start
whatever we write in the body tag will be visible in the website
<html>
<head>
<title> A simple and cool website </title>
</head>
<body>
Hello, world! This is my first HTML code.
</body>
</html>

Commenting