Jezzy Grey

Generation

Create a css template for Django that will bold the information in the <head> block and italicize the information in the <body> block

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>{% block title %}{% endblock %}</title> <link rel="stylesheet" type="text/css" href="{% static 'main.css' %}"> </head> <body> {% block body %} {% endblock %} </body> </html>

Questions about programming?Chat with your personal AI assistant