[회고] 신입 iOS 개발자가 되기까지 feat. 카카오 자세히보기

🛠 기타/WEB

django 기초 - CSS파일 연결하기

inu 2020. 8. 24. 20:23
반응형

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파일을 작성하면 된다.

반응형