I am trying asp.net mvc these days but am stuck in the initial phase. I want to place an image instead of the application name with a title and an alt tag. please help me.
thanks
<div class="navbar-header pull-left"> <a class="navbar-brand" href="index.html"><img src="img/accomodator-mini.png" title="title" alt="additional title" /></a> </div>
how to do the above in this way:
@Html.ActionLink("Application name", "Index", "Home", null, new { @class = "navbar-brand" })
I am confused how to show image instead of application name
css html5 twitter-bootstrap razor asp.net-mvc-5
Robin
source share