1. Static Files
- Buat file style.css di direktori static.
body {
background-color: #FCFCFC;
}
2. Include-kan style.css di base.html.
{% load static %}
...
...
<head>
...
...
<link rel="stylesheet" href="{% static 'css/style.css' %}">
</head>
...
...
2. Bootstrap
- Copy file-file bootstrap ke direktori static.
- Link kan file bootstrap di base.html.
3. Bootstrap CDN + Starter Template
Opsi lain: menggunakan online source.
Lanjutkan Membaca Materi Lengkap