0
<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <title>Japan</title>
   <link rel="stylesheet" href="css/reset.css">
   <link rel="stylesheet" href="css/style.css">

</head>

what must i do to work css files in django project?

Sergo96
  • 15
  • 5

1 Answers1

0

You need the add the static URL :

<link rel="stylesheet" href="{{ STATIC_URL }}/css/reset.css" />
<link rel="stylesheet" href="{{ STATIC_URL }}/css/style.css" />
Dhanuka Perera
  • 1,395
  • 3
  • 19
  • 29