I’m using a Google font Bungee Shade. It’s not displaying on all computers.
I’ve tried the CSS:
@import url(‘https://fonts.googleapis.com/css?family=Bungee+Shade’);
.script {
font-weight: 400 !important;
font-family: ‘Bungee Shade’, Arial Black !important;
text-transform: none;
}
and Javascript:
function load_script() {
wp_enqueue_style( ‘google-font’, 'https://fonts.googleapis.com/css?family=Bungee+Shade’);
}
but it’s still not loading on every machine.
Any suggestions?