HTML Tag

<HTML>is a starting tag. To delimit the text inside, add a closing tag by adding a forward slash “/” to the starting tag. Most but not all tags have a closing tag. It is necessary to write the code for an HTML page between <HTML> and <HTML>. This <HTML> tells the browser is ‘this is the start of an HTML document’ and ‘this is the end of an HTML document’.

<html>
……………………..
………………………
………………………….
</html>

Tagged : /

Head Tag

Before the element you will often see a element. This contains information about the page, rather than information that is shown within the main part of the browser. You will usually find a element inside the <head> element. <head> is opening head tag and </head> is closing head tag.</p>

<html>
	<head>
		<title> Hello </title>
	</head>
</html>

Tagged : /