Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. @{
  2. ViewData["Title"] = "Home Page";
  3. }
  4.  
  5. <div class="text-center">
  6. <h1>Let's count to 3!</h1>
  7. @for(var i = 1; i <= 3; i++)
  8. {
  9. <h2>@i</h2>
  10. }
  11. <h1>Well done!</h1>
  12. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement