TAGS Basic Tags are
Program
- Title : The <title> tag defines the title of the document.
- Body : The <body> element contains all the contents of an HTML document.
- Italic : The HTML <em> element defines emphasized text.Can also used by <i>
- Bold : the HTML <b> tag displays the specified content in bold format.
- Underline : The <u> tag represents some text that is unarticulated and styled differently from normal text.
- BR : use to to give enter in line.
INPUT
<html> <head> <title>this is my website</title> //here title is used </head> <body> //here body is used <b>BOLD</b><br> //here bold is used <i>ITALIC</i><br> //here italic is used <u>UNDERLINE</u><br> //here underline is used </body> </html>
OUTPUT
![]()