- [Django]-"Post Image data using POSTMAN"
- [Django]-How do I use Django templates without the rest of Django?
- [Django]-How to implement breadcrumbs in a Django template?
0👍
Your code needs to be refined.
You are using double quotes, where you need to use an apostrophe.
Use
href ="{% static 'css/contact.css' %} "
Instead of
href ="{% static" css/contact.css" %} "
- [Django]-Get all table names in a Django app
- [Django]-Get the list of checkbox post in django views
- [Django]-How to migrate back from initial migration in Django 1.7?
Source:stackexchange.com