HTML is a hypertext markup language. Every HTML page has two part one head part another is body. It will run on browser.
Anything available in head will not display on browser. Body part is used for user work. User can manipulate it, according to our requirements. Text which is available in it will be display on browser.
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>HTML is a markup language</title> <!--Head part--> </head> <body> <!--Body part. --> Hello HTML </body> </html> |

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.