diff --git a/chapter10/chapter10-project03.php b/chapter10/chapter10-project03.php
index 7bb2d015d18464f4e77b64e3e3b4a8b47ab2186b..65a23de58be69b382d331336be13cea86282f5e9 100644
--- a/chapter10/chapter10-project03.php
+++ b/chapter10/chapter10-project03.php
@@ -116,7 +116,7 @@
 
       </div>  <!-- end main content column -->
    </div>  <!-- end main content row -->
-</div>   <!-- end container -->
+   <!-- end container -->
    
 
 
diff --git a/chapter10/orderFunctions.inc.php b/chapter10/orderFunctions.inc.php
index e180a2735a1abeddef73c2600e58aee63f4b2a76..15e24b3354406483540e65ee9c122a54b405d9e4 100644
--- a/chapter10/orderFunctions.inc.php
+++ b/chapter10/orderFunctions.inc.php
@@ -38,8 +38,8 @@
 		$ordersArrayLength = count($orders);
 		for ($index = 0; $index < ($ordersArrayLength); $index++) {
 			echo "<tr>";
-				echo "<td><img src='images/book/tinysquare/" . $orders[$index][2] . ".jpg'></td>";
-				echo "<td><a href='chapter10-project03.php?isbn=" . $orders[$index][2] . "'>" . $orders[$index][2] . "</td>";
+				echo "<td><img src='images/book/tinysquare/" . $orders[$index][2] . ".jpg' alt=''></td>";
+				echo "<td><a href='chapter10-project03.php?isbn=" . $orders[$index][2] . "'>" . $orders[$index][2] . "</a></td>";
 				echo "<td>" . $orders[$index][3] . "</td>";
 				echo "<td>" . $orders[$index][4] . "</td>";
 			echo "</tr>";