diff --git a/WebHostLib/static/assets/tutorial.js b/WebHostLib/static/assets/tutorial.js
index 23d2f076fc..39fc356913 100644
--- a/WebHostLib/static/assets/tutorial.js
+++ b/WebHostLib/static/assets/tutorial.js
@@ -27,6 +27,11 @@ window.addEventListener('load', () => {
tutorialWrapper.innerHTML += (new showdown.Converter()).makeHtml(results);
adjustHeaderWidth();
+ const title = document.querySelector('h1')
+ if (title) {
+ document.title = title.textContent;
+ }
+
// Reset the id of all header divs to something nicer
const headers = Array.from(document.querySelectorAll('h1, h2, h3, h4, h5, h6'));
const scrollTargetIndex = window.location.href.search(/#[A-z0-9-_]*$/);
diff --git a/WebHostLib/templates/check.html b/WebHostLib/templates/check.html
index 64f19b0f9c..04b51340b5 100644
--- a/WebHostLib/templates/check.html
+++ b/WebHostLib/templates/check.html
@@ -1,7 +1,6 @@
{% extends 'pageWrapper.html' %}
{% block head %}
- {{ super() }}
Mystery Check Result
diff --git a/WebHostLib/templates/generate.html b/WebHostLib/templates/generate.html
index aa16a47d35..eff42700a7 100644
--- a/WebHostLib/templates/generate.html
+++ b/WebHostLib/templates/generate.html
@@ -1,7 +1,6 @@
{% extends 'pageWrapper.html' %}
{% block head %}
- {{ super() }}
Generate Game
diff --git a/WebHostLib/templates/hostGame.html b/WebHostLib/templates/hostGame.html
index 55d155c74a..2bcb993af5 100644
--- a/WebHostLib/templates/hostGame.html
+++ b/WebHostLib/templates/hostGame.html
@@ -1,7 +1,6 @@
{% extends 'pageWrapper.html' %}
{% block head %}
- {{ super() }}
Upload Multidata
diff --git a/WebHostLib/templates/startPlaying.html b/WebHostLib/templates/startPlaying.html
index 157d6de243..436af3df07 100644
--- a/WebHostLib/templates/startPlaying.html
+++ b/WebHostLib/templates/startPlaying.html
@@ -1,7 +1,6 @@
{% extends 'pageWrapper.html' %}
{% block head %}
- {{ super() }}
Start Playing
{% endblock %}