showCategory('CSS');

Hide reCAPTCHA v3 badge

.grecaptcha-badge {
    visibility: hidden !important;
}

Showing 5 lines of 6 total lines in this snippet.

Load Google Web Fonts Asynchronously

<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.5.18/webfont.js"></script>
<script type="text/javascript">
 WebFont.load({
 google: {
 families: ['Ubuntu:300,400,600,700', 'Dosis:400']
 }
 });
</script>

Showing 9 lines of 9 total lines in this snippet.

Load FontAwesome by link and in WP

function load_fontawesome(){
  wp_enqueue_style('fontawesome', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css');
}
add_action('wp_enqueue_scripts', 'load_fontawesome');

Showing 4 lines of 11 total lines in this snippet.

Include Google Web Fonts

<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">

Showing 1 lines of 9 total lines in this snippet.