Question 6
The directory listing of a folder and the content of each of its files are given below.
Directory Listing:
my_dir-| |-- base.html |-- home.html |-- index.htmlFilename: base.html
<body> <h1>Welcome to MAD-I course</h1></body>Filename: home.html
<body> <h1>Welcome to PDSA course</h1></body>Filename: index.html
<body> <h1>Welcome to DBMS course</h1></body>If a simple Python HTTP server is created for this directory, what will be rendered on the browser for base URL?