I'm learning to developing in Php and Wordpress. Somebody can explain to me what mean a handle in this context:
<?php wp_enqueue_style( $handle, $src, $deps, $ver, $media ); ?>
Parameters $handle (string) (required) Name used as a handle for the stylesheet. As a special case, if the string contains a '?' character, the preceding part of the string refers to the registered handle, and the succeeding part is appended to the URL as a query string. Default: None
url: https://codex.wordpress.org/Function_Reference/wp_enqueue_style
Thanks!! :)