

@{
    ViewBag.Title = "Test";
    Layout = "~/Views/Shared/Layout.cshtml";
}

<br />
<div style="width:246px;margin-left:44px">
    <div class="row">
        <div class="home-box-header">
           Test Web Font Icon
        </div>
        <div class="home-box-msg" style="height:100px">
            @(Html.Kendo().Button()
                                .Name("search")
                                .Tag("span")
                                .Content("Search")
                                 .Icon("k-icon k-i-search")
            )

            @(Html.Kendo().Button()
                                .Name("openfile")
                                .Tag("span")
                                .Content("Open File")
                                 .Icon("k-icon k-i-folder-open")
            )
           @(Html.Kendo().Button()
                        .Name("closefile")
                        .Tag("span")
                        .Content("Close File")
                        .Icon("k-icon k-i-folder")
            )

           @(Html.Kendo().Button()
                                .Name("addfile")
                                .Tag("span")
                                .Content("Add File")
                                 .Icon("k-icon k-i-file-add")

            )

            @(Html.Kendo().Button()
                                .Name("uploadfile")
                                .Tag("span")
                                .Content("Upload File")
                                .Icon("k-icon k-i-folder-up")

            )          


        </div>
    </div>
</div>







          
