I can't link CSS file to HTML file in Django project
HTML file is working well. But it's not linking with CSS, what I make in CSS simply does not work. HTML PAGE <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>TheWebPub</title> <link rel="stylesheet" href="stylepage.css"> </head> <body> {%…