My CSS file is not working on Jinja template. Is there a way I can fix it?
<!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <title>My Dynamic Website</title> <link rel=”stylesheet” href=”../static/css/style.css”> </head> <body> {% for i in range(5) %} <div class = “back-container”> <div class = “front-container”> <span> {{i}}</span> </div> </div> {% endfor %} </body> </html> The css is not working. Below is my css code .back-container { width:400px; height:400px; background-color: #104fbb; padding: […]