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.
Write your answer inside the "answer" variable's triple quotes. Use <h1> tag for the we are here for you text.