There is a class Functions.
He has static methods.
You need to create an Html class with a copy of the Functions class methods.
class Html extends Functions { } Is there any way to specify exactly which methods the Html class should inherit?
In the Html class, all methods of the Functions class are not required.