Menu
×
×
Correct!
Exercise:Fill in the blanks to be able to use a static file called 'styles.css' as a stylesheet in this template:
@(17)
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="@(25)">
<body>
<h1>Hello</h1>
</body>
</html>
{% load static %}
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="{% static 'styles.css' %}">
<body>
<h1>Hello</h1>
</body>
</html>
{%load static%}
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="{%static 'styles.css'%}">
<body>
<h1>Hello</h1>
</body>
</html>
{%load static%}
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="{% static 'styles.css' %}">
<body>
<h1>Hello</h1>
</body>
</html>
{% load static %}
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="{%static 'styles.css'%}">
<body>
<h1>Hello</h1>
</body>
</html>
Not CorrectClick here to try again. Correct!Next ❯ |