HTML Tags
The html tags are used to tell the web server that you are about to use a html document.
<html>
<head>
<title>Title of your web page</title>
</head>
<body>
Place your content within here
</body>
</html>
Example: The above tags are the basics you need to create a simple web page, only the content within the title tag and body tags will be displayed in the browser.
