Change default font

3

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?

    
asked by anonymous 12.04.2016 / 16:10

1 answer

4

Ideally, you should not edit the source code of bootstrap , so avoid skimming things you do not like. To work with another default font, you can do as you did in html itself:

<link href='https://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>

And edit the default font in customization that own bootstrap offers here .

    
08.11.2016 / 18:55