I am stuck here. I shall be grateful if anyone can help me.
I have been frequently facing problem of not loading CSS in Chrome Browser when I shall render the web-app in localhost. Can anyone provide me solution for this CSS not loading during running development server?
I have been also trying to create icon as a social links in footer. Can anyone provide any solution code for this problem?
NO JAVASCRIPT
**settings.py:**
DEBUG = TRUE
STATICFILES_DIRS = [
'myapp/static',
]
STATIC_URL = 'static/'
MEDIA = '/media/'
````````````````````````````````````````````````````````````````````````````````````````````````````````
**base.html:**
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{% static 'css/styles.css' %}">
<title>Document</title>
</head>
<body>
{% include 'partials/_header.html' %}
<main> {% block content %}{% endblock %}</main>
{% include 'partials/_footer.html' %}
</body>
</html>
````````````````````````````````````````````````````````````````````````````````````````````
footer:
<footer>
<div>
<a href=" https://www.linkedin.com/in/aninda-kundu-481718188/recent-activity/all/">LinkedIn</a>
</div>
</footer>