Question 5
Consider the HTML code given below:
File name: base_layout.html
<!DOCTYPE html><html lang="en"><head> <title>ABC App</title></head><body> <h3>Welcome to ABC App</h3> {% block abc %}{% endblock %}</body></html>Which of the following is the correct implementation of template inheritance?