I have a following problem with CSS file. My template Test.html looks like this ###################### <html> <head> <link rel="StyleSheet" href="Test.css" type-"text/css" > </head>
<body> TEST ONLY </body> </html> ################### where Test.css looks like this ################### body { background: #000000; color: #FFFFFF; font: 10pt verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; margin: 5px 5px 10px 5px; } ################# And now when I open the Test.html file in my web browser I will receive black background with the white TEST ONLY text, which is correct But when I try it in Django like #################### ... ... return render_to_response('board/Test') ################### it does NOT work( the text is not white and background is not black. But why? Where did I make a mistake? Thanks for help. L.