diff --git a/functional_tests.py b/functional_tests.py
index f721ba5fb7976df0b93e7e6173327c9fdaad217c..31d5918c7806f779b4724741b4ebce556e4cd9b7 100644
--- a/functional_tests.py
+++ b/functional_tests.py
@@ -10,7 +10,7 @@ class NewVisitorTest(unittest.TestCase):
  # to check out its homepage
         self.browser.get('http://localhost:8000')
  # She notices the page title and header mention to-do lists
-        self.assertIn('To Do', self.browser.title)
+        self.assertIn('To-Do', self.browser.title)
         self.fail('Finish the test!')
  # She is invited to enter a to-do item straight away
 #  [...rest of comments as before]
diff --git a/lists/tests.py b/lists/tests.py
index 2cd3fe1b28a266eae89d5b40aa8a5a4a420cc95e..e4cdd776077da02d546aecca2adefcda2da3cd94 100644
--- a/lists/tests.py
+++ b/lists/tests.py
@@ -1,7 +1,15 @@
 from django.urls import resolve
 from django.test import TestCase
+from django.http import HttpRequest
 from lists.views import home_page
 class HomePageTest(TestCase):
     def test_root_url_resolves_to_home_page_view(self):
         found = resolve('/')
-        self.assertEqual(found.func, home_page)
\ No newline at end of file
+        self.assertEqual(found.func, home_page)
+    def test_home_page_returns_correct_html(self):
+        request = HttpRequest()
+        response = home_page(request)
+        html = response.content.decode('utf8')
+        self.assertTrue(html.startswith('<html>'))
+        self.assertIn('<title>To-Do lists</title>', html)
+        self.assertTrue(html.endswith('</html>')) 
\ No newline at end of file
diff --git a/lists/views.py b/lists/views.py
index 5623c95356036fc68836973ed09317a814edd8e4..6d9257dac61c7ba3c64dec28fa57f5c5efce2e1e 100644
--- a/lists/views.py
+++ b/lists/views.py
@@ -1,5 +1,6 @@
 from django.shortcuts import render
+from django.http import HttpResponse
 # Create your views here.
 
-def home_page():
-    pass
\ No newline at end of file
+def home_page(req):
+    return HttpResponse('<html><title>To-Do lists</title></html>')
\ No newline at end of file