Learn HTML Introduction What is HTML? - HTML stands for Hyper Text Markup Language to help us creating a website / web page.Html code comes with tag so you can see <tagname>content goes here...</tagname>Tags are normally come in pairs like <p> and </p> or <h1> </h1><p> : This is Paragraph Open Tag </p> : this is Paragraph closed tagExample :<!DOCTYPE html><html><title>Here you can write Title of the page</title><body><h1>this is First Heading</h1><p> this is first paragraph.</p></body></html>You will write Upon the given code in notepad++ then you got result like given below & save file to Desktop or any location which you want & save then you can open that file in browser then you able to see result like given below….orYou also write this code in the normal notepad which in your pc & go to file to save as write index.html & choose save a type- all files & save then you can open that file in browser then you able to see result like given below….