Hyper Text Markup Language (HTML) is the main markup language for creating web pages and other information that can be displayed in a web browser.Now you can also make or create these webpages with the help of this simple code given below.
Simple Html Webpage Code :
Simple Html Webpage Code :
<! DOCTYPE html>In the above code,
<html>
<head>
<title>
How To 99
</title>
</head>
<body>
Anything that you write in body section will display on the browser window
</body>
</html>
- The DOCTYPE declaration defines the document type.
- The text between <html> and </html> describes the web page.
- The text between <title> and </title> is the title of your page.
- The text between <body> and </body> will display on your web-browser window.