How do I target @Model within a src of an image tag?

Try this one:

<dt>
    @Html.DisplayNameFor(model => model.ImageUrl)
</dt>
<dd>
    <img src="@("~/Content/EmployeeImages" + Model.ImageUrl)" alt="Employee Photo" />
</dd>