728x90
반응형
부트스트랩 설치
pip install django-bootstrap4
https://django-bootstrap4.readthedocs.io/en/latest/installation.html
Settings.py 등록
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'bootstrap4',
'accountapp',
]
html 경로 추가
<!-- 부트스트랩 추가-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
구글 폰트(font) 설치
https://fonts.google.com/specimen/Lobster?preview.text=pragmatic&preview.text_type=custom
html 경로 추가
<!-- 구글 폰트 링크-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lobster&display=swap" rel="stylesheet">
CSS 추가
.pragmatic_logo{
font-family: 'Lobster', cursive;
}
네이버 글꼴 다운받기
https://hangeul.naver.com/2017/nanum
글꼴 다운받고 static > fonts 폴더 위치
- html파일의 style 지정
반응형
'Backend > Django' 카테고리의 다른 글
django 07. model, DB 연동하기 (0) | 2021.10.05 |
---|---|
django 06. static 설정 및 css 파일 분리 (0) | 2021.10.05 |
django 04. include/ extends / block 구문을 이용한 뼈대 html 만들기 (0) | 2021.10.05 |
django 03. 장고 template의 extends, include 구문과 render 함수 (0) | 2021.10.05 |
django 02. Git 활성화, 환경변수 분리, commit (0) | 2021.10.05 |