Raymond L. answered 11h
Tutor
4.8
(33)
3 Years+ Industry Expereince in C#/.Net/Asp.Net Core/Web Development
@{
Layout = "~/_SiteLayout.cshtml";
Page.Title = "About";
// Array examples
string[] features = { "Easy to use", "Fast performance", "Secure", "Responsive design" };
string[] teamMembers = { "John Smith", "Jane Doe", "Mike Johnson", "Sarah Williams" };
int[] stats = { 1000, 5000, 250, 50 };
}
<hgroup class="title">
<h1>@Page.Title.</h1>
<h2>Your app description page.</h2>
</hgroup>
<article>
<h3>Our Features</h3>
<ul>
@foreach (var feature in features)
{
<li>@feature</li>
}
</ul>
<h3>Team Members</h3>
<ol>
@for (int i = 0; i < teamMembers.Length; i++)
{
<li>@teamMembers[i] - Member
}
</ol>
<h3>Statistics</h3>
<table>
<tr>
<th>Users</th>
<th>Downloads</th>
<th>Reviews</th>
<th>Countries</th>
</tr>
<tr>
@foreach (var stat in stats)
{
<td>@stat</td>
}
</tr>
</table>
</article>