반응형
flask css 파일 연동 / css 파일 적용하기
1. 파일 구조
- static 디렉션 생성 후 css 폴더 안에 test.css를 위치 시키는게 가장 일반적입니다.
├── app.py
├── static
│ └── css
│ └── test.css
└── templates
└── main.html
2. main.html 파일에서 <head></head> 테그 안에 아래와 같이 작성합니다.
<head>
<link rel="stylesheet" href=" {{ url_for('static', filename='css/style.css') }}">
</head>
반응형
'python web framework' 카테고리의 다른 글
flask render_template, flask html 파일 연동 (0) | 2023.04.21 |
---|---|
플라스크 시작하기 flask hello world, hello flask, hellp python (0) | 2023.04.06 |
플라스크(flask) session을 이용한 로그인 / 로그아웃 (0) | 2023.03.29 |
flask 폴더에 있는 이미지 불러오기 html (0) | 2023.03.22 |
주피터노트북 파일을 웹서비스에 끼워 넣기 (flask) (0) | 2023.03.20 |
댓글