favicon.ico は以下のサイトで作れる。
favicon.icon の置き場所は例えば
📂webapp1
|
+-- 📂static
|
+--🚀favicon.ico
テンプレートに以下のように追記
{% load static %} {% comment %} 👈あとで static "URL" を使うので load static します {% endcomment %}
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" type="image/png" href="{% static 'favicon.ico' %}" />
中略
<title>Tic Tac Toe</title>
</head>
<body>
以下略