1. Setup and getting Started

  1. Download VS code for your machine.
  2. Add HTML Snippets extension.

Untitled

  1. Add live server extension.

Untitled

  1. Create a folder named “Basics of HTML”

Untitled

  1. Create an HTML file : index.html

Untitled

  1. On the bottom right click on go live

Untitled

Output

Untitled

2. Basic HTML tags and Resources:

Resources: 1) w3 school

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>

Untitled

Commenting