diff --git a/public/images/markruffalo.jpg b/public/images/markruffalo.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..c5af38826cf62653606241c42873f40b8c5ef7e2
Binary files /dev/null and b/public/images/markruffalo.jpg differ
diff --git a/public/stylesheets/style.css b/public/stylesheets/style.css
index f128bc90db0b7969ecad19651120cacfaae1127d..d59b9a833e99ba90dc4be9eb2d03cf39547c8995 100644
--- a/public/stylesheets/style.css
+++ b/public/stylesheets/style.css
@@ -21,6 +21,11 @@ body {
   height: 600px;
 }
 
+#actorImg {
+  width: 80px;
+  height: 160px;
+}
+
 #star {
   width: 30px;
   height: 30px;
diff --git a/views/index.pug b/views/index.pug
index 9d77e48101ce971ae8ea74a49401cdd7b59da918..19617b126d4b73f1eba1f8d8804d826a55798ce3 100644
--- a/views/index.pug
+++ b/views/index.pug
@@ -9,6 +9,7 @@ block content
     input(class="textList" id="text2" type="text" name="actor")
     input(class="textList" id="text3" type="text" name="genre")
     input(class="textList" id="text4" type="text" name="poster_path")
+    input(class="textList" id="text5" type="text" name="actor_path")
     p Movie Ratings
     input(class="radioList" type="radio" name="grade" value = "0") 
     | 0
diff --git a/views/result.pug b/views/result.pug
index 55d7d1527bbc4a971b48b01cc579dfe62b99c022..04f75ae0640157de9258e68be1d9d287a4cfe9d2 100644
--- a/views/result.pug
+++ b/views/result.pug
@@ -9,6 +9,7 @@ html
     p(id="title") #{data.title}
     hr
     p(id="actor") #{data.actor}
+    img(id="actorImg" src=`${data.actor_path}`)
     p(id="genre") #{data.genre}
     hr
     - let radioButtons = `${data.grade}`