https://www.pluralsight.com/courses/aspnetcore-mvc-efcore-bootstrap-angular-web
HTML5
Adding a Google Map with a Marker to Your Website
Watch “Building Full-stack C# Web Apps with Blazor in .NET Core 3.0” on YouTube
HTML width Attribute
<table>
<tr>
<th width="70%">Month</th>
<th width="30%">Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</table>
How to set a dropdown box value in jQuery
Create a CSS Loader
<div class="loader"></div>
<style>
.loader {
border: 16px solid #f3f3f3; /* Light grey */
border-top: 16px solid #3498db; /* Blue */
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}
.loader2 {
border-top: 16px solid blue;
border-bottom: 16px solid blue;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
Tips and Tricks about Razor Partial Views
By: Dino Esposito
Partial views in ASP.NET MVC allow you to reuse and customise components to act like user controls. They consist of both code and markup. They are an idea that is easy to grasp but they have great potential for the more adventurous developer who is prepared to experiment. Dino Esposito explains.