英文:
CSS file not linking to a HTML file
问题
我有这个HTML文件,我正在尝试将一个CSS文件链接到它。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="main.css"/>
<title>Document</title>
</head>
<body>
<p>Aqui podras veure el temps de vilafant en un futur, no tinguis presa</p>
<h2>La humitat d'avui és: {{humitat}}</h2>
<h2>La temperatura d'avui és: {{temperatura}} Cº</h2>
<h2>La pressió d'avui és: {{pressio}}</h2>
<a href="{% url 'home' %}" >
<button>Update</button>
</a>
</body>
</html>
当我执行这个文件时,我得到这个错误:
Not Found: /weathersite/temps/templates/main.css
我不明白为什么,因为它们在同一个文件夹中。
我已经尝试用上面代码中的链接来链接它。
英文:
I have this HTML file and I'm trying to link a CSS file to it.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="main.css"/>
<title>Document</title>
</head>
<body>
<p>Aqui podras veure el temps de vilafant en un futur, no tinguis presa</p>
<h2>La humitat d'avui és: {{humitat}}</h2>
<h2>La temperatura d'avui és: {{temperatura}} Cº</h2>
<h2>La pressió d'avui és: {{pressio}}</h2>
<a href="{% url 'home' %}" >
<button>Update</button>
</a>
When I execute this file, I get this error:
> Not Found: /weathersite/temps/templates/main.css
I don't understand why because they are in the same folder.
I have tried linking it normally with the link line of code.
答案1
得分: 0
在Django中,您可能需要使用类似以下的代码:
{% load static %}
<link rel="stylesheet" type="text/css" href="{% static 'main.css' %}"/>
在这种情况下,您必须将main.css文件存储在您项目目录中名为'static'的文件夹中。
英文:
In Django, you may need to use something like:
{% load static %}
<link rel="stylesheet" type="text/css" href="{% static 'main.css' %}"/>
In this case, you must store main.css file in a folder called 'static' in your project directory.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论