diff --git a/app/tutorial.rb b/app/tutorial.rb
index 4453594d..cdba092f 100644
--- a/app/tutorial.rb
+++ b/app/tutorial.rb
@@ -1,3 +1,22 @@
+def default_tutorial_html
+ <<-EOT.strip
+
+
+
+
+
+ My web site
+
+
+
+
+ Hello World!
+
+
+
+EOT
+end
+
get '/tutorials' do
erb :'tutorials'
end
diff --git a/public/cat.png b/public/cat.png
index d4be8f21..7d8eeadb 100644
Binary files a/public/cat.png and b/public/cat.png differ
diff --git a/views/tutorial/html/2.erb b/views/tutorial/html/2.erb
index c54131c6..6f615be2 100644
--- a/views/tutorial/html/2.erb
+++ b/views/tutorial/html/2.erb
@@ -32,10 +32,9 @@
var answer = storedName+ "'s Website"
$('#studentName').text(storedName)
- function checkHomework(editor) {
- var html = editor.val()
-
- var match = '.+.+'+answer+'.+.+'
+ function checkHomework() {
+ var html = editor.getValue()
+ var match = '.+.+'+answer+'.+.+