I'm trying to change the font of a page I'm mounting with bootstrap, but for some reason it does not. I've done the following steps:
No HTML:
<link href='https://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
No bootstrap.css:
html {
font-family: 'Indie Flower', sans-serif;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
No bootstrap.min.css:
{font-family: 'Indie Flower', sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}
Any suggestions?