Skip to content

Instantly share code, notes, and snippets.

@renatogroffe
Created January 29, 2017 23:42
Show Gist options
  • Save renatogroffe/f420d7d987e08a100460630ce738e210 to your computer and use it in GitHub Desktop.
Save renatogroffe/f420d7d987e08a100460630ce738e210 to your computer and use it in GitHub Desktop.
@model IEnumerable<string>
<style type="text/css">
li {
font-size: 22px;
}
</style>
<ul>
@foreach (var item in Model)
{
<li>@item</li>
}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment