Create a HTML web page to show personal information.
COMPUTER APPLICATION Exercise: 2 Aim: Create a HTML web page to show personal information. HTML: · HTML Stands for Hyper Text Markup Language. · It is the coding language that makes web-pages; it is the skeleton of every web-page that exists. HTML elements are represented by tags and Browsers do not display the HTML tags, but use them to render the content of the page. · Basic example of html <html> <head> <title>sample</title> </head> <body> <h1>This is a heading</h1> <p>Document content goes here……</p> ...