About us page

Report a typo

The following is a simple parent template:

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>About us</title> 
  </head>
  <body>
    <main>
      <div id = "txt1">
        {% block block1 %}{% endblock %}
      </div>
    </main>

    <footer>
      {% block footer %} {% endblock %}
    </footer>

</body>
</html>

Create the following "about us" webpage from the above template using template inheritance.

webpage about us

Write your answer inside the "answer" variable's triple quotes. Use <h1> tag for the we are here for you text.

Write a program in Python 3
answer = ''' ''' #write your answer here , inside the the triple quotes.
___

Create a free account to access the full topic