diff --git a/lists/templates/index.html b/lists/templates/index.html index e2a0cab61db8e1dde4562d1c1c075f4599bef3a8..166f5d48dd0d4689796953e5e13404ac21ddf8ea 100644 --- a/lists/templates/index.html +++ b/lists/templates/index.html @@ -1,15 +1,30 @@ <!DOCTYPE html> <html> +<style> + body { + font-family:Lato; + background-color: linen; + text-align:center; + } + + h1 { + color: maroon; + } + + h2 { + color: black; + } +</style> + <head> -<title>Homepage - Farah Alhaniy</title> + <title>Homepage - Farah Alhaniy</title> + <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Lato" /> </head> <body> - -<h1 id="name">Hi!</h1> -<h2 id="npm">I'm Farah, a CompSci student</h1> - + <h1 id="name">Hi!</h1> + <h2 id="npm">I'm Farah, a CompSci student</h1> </body> </html> \ No newline at end of file diff --git a/lists/tests.py b/lists/tests.py index 91755816fadb0c0ad819a64207d2516df44614d2..661471278bd1f8a82399235c1570cc4b14a3822c 100644 --- a/lists/tests.py +++ b/lists/tests.py @@ -29,6 +29,4 @@ class HomePageTest(TestCase): expected_name = 'Farah' self.assertIn(expected_greeting, html) - self.assertIn(expected_name, html) - - \ No newline at end of file + self.assertIn(expected_name, html) \ No newline at end of file