Question 14
A server using the inbuilt http module of Python, is running for a directory My_app whose file structure and content of each file is given below.
Folder: My_app
My_app |_ home.html |_ first.html |_ main.htmlFile: home.html
<h1>Hello from Home!</h1>File: first.html
<h1>Hello from First!</h1>File: main.html
<h1>Hello from Main!</h1>What will be rendered by the browser for the URL: http://localhost:8000/first.html assuming that 8000 is the port of connection?