including css in Django
问题 I'm new to Django, and i'm having hard time including css styles in a template. I read this and tried to do the same but it's not working for me. my Template: {% load static %}<html><head><link href="{% get_static_prefix %}/style.css" rel='stylesheet' type='text/css' /></head><body> the HTML i get: <head><link href="C:/Users/Nayish/workspace/am/src/am/static/style.css"rel='stylesheet'type='text/css' /></head> Note that this is the folder containing my css. Thanks, Boris. 回答1: I am guessing