When you work in ASP.Net MVC and you want to put links in head section but it appears after many links this is because head section code comes from shared layout.
So if you want to add some links at the top in a view head section you need to make a render point in shared layout with a unique name and put your links inside of given name section.
Layout section
@RenderSection("GCSS", required: false)
@RenderSection("og", required: false)