We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d2652a commit ed9b06dCopy full SHA for ed9b06d
static/style.css
@@ -0,0 +1,5 @@
1
+body {
2
+ font-family: sans-serif;
3
+ font-size: 16px;
4
+ background-color: #f0f0f0;
5
+}
templates/base.html
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
+ <link rel="stylesheet" href="/static/style.css">
<title>{% block title %}Online Store{% endblock %}</title>
6
</head>
7
@@ -18,7 +19,7 @@ <h1>Online Store</h1>
18
19
{% block content %}{% endblock %}
20
</main>
21
<footer>
- <p>Thanks for visiting our store!</p>
22
+ <p>Thanks for visiting our store!</p>
23
</footer>
24
</body>
25
</html>
0 commit comments