반응형
CSS 파일 연결
<head>
{% load static %}
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel='stylesheet' type="text/css" href="{% static 'home.css' %}"/>
</head>
- {% load static %}를 추가하고 head에 <link rel='stylesheet' type="text/css" href="{% static 'home.css' %}"/>를 추가한다.
- home.css는 css파일이름이고, static은 css파일이 들어있는 폴더이다.
- templates 폴더가 위치한 app폴더에 static 폴더를 만들어 css파일을 작성하면 된다.
반응형
'🛠 기타 > WEB' 카테고리의 다른 글
django 기초 - templates 관리하기 (base.html) (0) | 2020.09.13 |
---|---|
django 기초 - app 단위별로 url 정리하기 (0) | 2020.09.13 |
django 기초 - 확인메세지(onclick) (0) | 2020.08.24 |
django 기초 - model 데이터 삭제 / 수정 (0) | 2020.08.24 |
django 기초 - 반별 학생정보 저장 사이트 만들기 (0) | 2020.08.24 |