CSS is not loading for my FLASK application. (404)
I am using Flask to create a chatbot. HTML to display, and a python script to run the application. However, for some reason the CSS is not being read by the HTML. I have followed this convention for my directory
So File, contains Application(Python script), templates(Folder) and static(Folder). templates contains HTML file and static contains file. This is the code I have used in the HTML file to reference the CSS file:
Web Site SideBar Content
When I click on one of the options in the SideBar, I want the content related to it to open on the right side.
I wrote the code below, but even though I reach the “http://127.0.0.1:5000/admin_panel_menu/A” page, SideBar appears, but the text in contentA.html does not appear. How can I fix this?