Consider the following Python code snippet. Table mapping commands in column A to terminal outputs in column B, with the file.py code above it Consider the following HTML document. <!DOCTYPE html> <html> <head> <style> span { background-color: yellow; color: red; } #id { border: 2px solid purple; color:blue ; display: inline-block; } .class { background-color: aqua; color: red; display: block; width:20%; } </style> </head> <body> <span class="class" id="id">SPAN</span> <span class="class" >SPAN</span> <span>SPAN</span> </body> </html> How will the browser render above HTML file? Consider the following flask application. Table matching calculate URLs to their rendered outputs, with the app.py code above it