Hey guys we're learning with a friend how to code and we've just moved into front-end from back-end stuff. At the very beginning we faced a problem we can't solve. We want to have a image in background of this form:
<form asp-controller="Notes" asp-action="Index" method="get">
<p1>
Hashtag: @Html.DropDownList("noteHashtag", "All")
Name: <input type="text" name="SearchString">
<input type="submit" value="Filter" />
</p1>
</form>
we tried doing stuff like adding to p1 or form this:
style="background-image:url(//images///images/SearchBg.jpg)"
but its not working. We're learning in ASP.NET core 1.0.0. Thanks for replies
