<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Index</title>
</head>
<body>
<div>
<h1>Club Belgrano</h1>
<p>Club nacido en el barrio Alberdi...</p>
</div>
</body>
</html>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace Proyecto3.Controllers
{
public class Ejercicio1 : Controller
// GET: Home
public ActionResult Index()
return View();
}