The RunLog/Views/InsertLog.cshtml view must display the /http://vceguide.com/wp-content/uploads/2018/09/stopwatch.png image and the "Insert Run Data" header text below the image. The view should resemble the exhibit. (Click the Exhibit button.) The application must display the image above the field set. You need…

The date of the run must be displayed in ViewsRunlogGetLog.cshtml. The timestamp must not be displayed. You need to display the date of the run according to the business requirements. Which code segment should you use? A. @Html.DisplayFor(model => log.ShortDate)…

You need to make all of the rows in the table bold in the Views/RunLog/GetLog.cshtml view. Which code segment should you use? A. Table > th:last-child { font-weight: bold; } B. Table+first-child{ font-weight: bold; } C. Table>tr>th:nth-child{2){font-weight: bold; } D.…

You need to make the "Distance" header of the table bold in the Views/RunLog/GetLog.cshtml view. Which code segment should you use? A. table>tr{ font-weight:bold; } B. table>th:last-child{ font-weight: bold; } C. table+first-child{ font-weight: bold; } D. table>tr>th:nth-child (2) { font-weight:…

If the canvas element is supported by the client browser, the application must display "London 2012" in the footer as text formatted by JavaScript at the end of the _Layout.cshtml file. You need to modify the layout to ensure that…