tags:

views:

32

answers:

3

in html when the title is not mentioned

<html>
<head></head>
<body>

</body>
</html>

then IE automatically shows filepath of html page. How to disable this function. And No i dont want to put a title element.

+2  A: 

use a blank title

<title> </title>
Tom Dignan
A: 
<html>
<title>Text whtever you want/leave it blank </title>

<head></head>
<body>

</body>
</html>
Richa
A: 

parse the page and add it if it not included as said by alex

subanki