Guides/MVC-Integration.md
... ...
@@ -451,16 +451,17 @@ After Step#11, the Sample_MVCApp should build and work without a problem. To see
451 451
**c.** Run the application and check if the images appear as edited.
452 452
453 453
454
-In this guide, two images, Logo.png and batman.png, were put in the project folder, /Sample_MVCApp, and the above two lines were edited as below
454
+In this guide, two images, Logo.png and SeaEagle.png, were put in the project folder, /Sample_MVCApp, and the above two lines were edited as below
455 455
456 456
```html
457
-<img src="~/Logo.png" alt="Batmans intelligence" /> //top-left image
457
+<img src="~/Logo.png" alt="Angry Sea Eagle" /> //top-left image
458 458
459
-<a href="http://batman.com" style="position: relative; top: 4px;"><img class="right-logo" src="~/batman.png" alt="Batman.Com" /></a> //top-right image
459
+<a href="http://SeaEagle.com" style="position: relative; top: 4px;"><img class="right-logo" src="~/SeaEagle.png" alt="SeaEagle.Com" /></a> //top-right image
460 460
```
461 461
462 462
463 463
464 464
Two top logos have changed as below
465 465
466
+![Test](/Guides/MVC-Integration/Logo_Change2.png)
466 467