ASP .NET MVC Panel Tag Helper

The jqx-panel tag helper adds a Panel component to a web page.
@{
ViewData["Title"] = "ASP .NET MVC Panel Example";
}
<label>ASP .NET Core MVC Panel Tag Helper Example</label><br/><br/>
<jqx-panel width=350 height=300 theme="@ViewData["Theme"]">
<jqx-panel-body>
<div style='margin: 10px;'>
<h3>Early History of the Internet</h3>
</div>
<!--Content-->
<div style='white-space: nowrap;'>
<ul>
<li>1961 First packet-switching papers</li>
<li>1966 Merit Network founded</li>
<li>1966 ARPANET planning starts</li>
<li>1969 ARPANET carries its first packets</li>
<li>1970 Mark I network at NPL (UK)</li>
<li>1970 Network Information Center (NIC)</li>
<li>1971 Merit Network's packet-switched network operational</li>
<li>1971 Tymnet packet-switched network</li>
<li>1972 Internet Assigned Numbers Authority (IANA) established</li>
<li>1973 CYCLADES network demonstrated</li>
<li>1974 Telenet packet-switched network</li>
<li>1976 X.25 protocol approved</li>
<li>1979 Internet Activities Board (IAB)</li>
<li>1980 USENET news using UUCP</li>
<li>1980 Ethernet standard introduced</li>
<li>1981 BITNET established</li>
</ul>
</div>
</jqx-panel-body>
</jqx-panel>