Class Small


@Bean(typeName="small") public class Small extends HtmlElementMixed
DTO for an HTML <small> element.

The small element represents side comments such as small print. It is typically used for disclaimers, caveats, legal restrictions, or copyrights. The small element does not "de-emphasize" or lower the importance of text; it represents side comments.

Examples:

import static org.apache.juneau.bean.html5.HtmlBuilder.*; // Copyright notice Small copyright = small("Copyright 2024 My Company. All rights reserved."); // Legal disclaimer Small disclaimer = small("This information is provided as-is without warranty."); // Terms and conditions Small terms = small("By using this service, you agree to our terms and conditions."); // Price with small print Small price = small( "$99.99", small("*plus tax and shipping") ); // Form with small print Small formNote = small("Required fields are marked with an asterisk (*)");

See Also: