I'm new to html and I got this piece of code:
@{
ViewBag.Title = "Index";
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>View1</title>
<script src="~/Scripts/jquery-1.9.1.min.js"></script>
<script src="~/Scripts/bootstrap.min.js"></script>
<link href="~/Content/bootstrap-theme.min.css" rel="stylesheet" />
<link href="~/Content/bootstrap.min.css" rel="stylesheet" />
</head>
<body>
<table>
@foreach (var item in Model.Data)
{
<tr>
<td><a href=@Model.DataUrl[item.Key]>@item.Key</a></td>
<td>@item.Value</td>
</tr>
}
</table>
</body>
</html>
I want to add a tab or spaces between: <td><a href=@Model.DataUrl[item.Key]>@item.Key</a></td>
and <td>@item.Value</td>
how do I do that?
I guess adding css is the best way but I don't understand how to use it.