What will be the window title of the browser when the below code is inside one single HTML file?
<html>
<head><title>First document</title></head>
<body><h1>First document</h1></body>
</html>
<html>
<head><title>Second document</title></head>
<body><h1>Second document</h1></body>
</html>
- In IE – “First document”
- In FF – Second document”
- Both IE & FF - “Second document”
- Both IE & FF – “First document”
- Varies from browser to browser
I encounter this question in a quiz. 5th option prompt me to post here. My additional questions 6. Will ever this kind of situation possible in real life? 7. Will results vary within browser versions too?
