Compose the UI layout of an application

You are creating an ASP.NET MVC web application. Within the application, you have created a partial view for contact email and phone number. Which code segment should you use to display the partial view on the main page?

<div class=”float-right”> <section id=”contact “> @RenderBody() </section> </div>
<div class=”float-right”> <section id=”contact”> @Html.Partial(“ContactPartial”) </section> </div>
<div class=”float-right”> <section id=”contact”> @Html.ActionLink(“ContactPartial”) </section> </div>
<div class=”float-right”> <section id=”contact”> @RenderPage(“ContactPartial”) </section> </div>