'How to put class attribute in <c:url>?

This is the link I have

        <a class="btn btn-outline-light mt-3 btn-lg" href="/menu">Name</a>

I want to transform it to <c:url> to be able to use <c:param>

I've tried this, but it does not give me a way to put class attritbute so that my css works.

    <c:url value="/menu">
 <c:param name="Id" value="736"/>
 <c:param name="user" value="example"/>
</c:url>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source