HTML is simple tagging language which helps to create the websites and it's full form is Hyper Text Markup Language (HTML) . Cascading Style Sheets (CSS) helps to design the website . JavaScript is used in backend development . Let's start from simple basics of HTML. There are two types of tags one opening and another is closing tag . Let's look at some basic tags first .
| TAG | DESCRIPTION |
| <html> | It is start of html coding of web page. It consists of <head>, <body>, tags . |
| <head> | This is head tag it is a head of web page . It is in <html> tag . |
| <title> | This tag is present in <head> tag . |
| <body> | This is the body of web page it consists of <div>, <p> , <nav>, etc.
|
| <p> | This is paragraph tag . You can add paragraph in it . |
Now let's take look at some coding.
This is will result as follow.
As you can see it this is how HTML is used .
Wait till next tutorial and keep learning best of luck from me.