diff --git a/website/web/templates/favicon_details.html b/website/web/templates/favicon_details.html
new file mode 100644
index 00000000..3965b7c8
--- /dev/null
+++ b/website/web/templates/favicon_details.html
@@ -0,0 +1,35 @@
+{% extends "main.html" %}
+
+{% from 'bootstrap5/utils.html' import render_messages %}
+
+{% block title %}Favicon: {{ favicon_sha512 }}{% endblock %}
+
+{% block content %}
+
+ {{ favicon_sha512 }}
+
+
+ The same favicon was seen in these captures:
+
+
+
+
+
+ Capture Title |
+
+
+
+ {% for capture_uuid, title in captures %}
+
+
+
+ {{ title }}
+
+ |
+
+ {% endfor %}
+
+
+
+
+{% endblock %}
diff --git a/website/web/templates/favicons.html b/website/web/templates/favicons.html
new file mode 100644
index 00000000..3353d29f
--- /dev/null
+++ b/website/web/templates/favicons.html
@@ -0,0 +1,43 @@
+{% extends "main.html" %}
+
+{% from 'bootstrap5/utils.html' import render_messages %}
+
+{% block title %}HTTP Headers Hashes lookup{% endblock %}
+
+{% block scripts %}
+{{ super() }}
+
+
+{% endblock %}
+
+{% block content %}
+
+
+
+
+ Favicon |
+ Frequency |
+ Number of captures |
+
+
+
+ {% for favicon_sha512, freq, number_captures, b64_favicon in favicons %}
+
+
+
+
+
+ |
+ {{ freq }} |
+ {{ number_captures }} |
+
+ {% endfor %}
+
+
+
+{% endblock %}