polls/static/polls/style.css
li a {
color: green;
}
body {
background: white url("images/background.gif") no-repeat;
#배경 이미지 추가
Python
복사
index.html
{% load static %}
<link rel="stylesheet" type="text/css" href="{% static 'polls/style.css' %}">
Python
복사