Use on the webTotal Use [ 5534 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/371213c6129c24324f5aa2e2e61319af?family=Google+Sans+Bold" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/371213c6129c24324f5aa2e2e61319af?family=Google+Sans+Bold);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Google Sans Bold";
src: url("https://db.onlinewebfonts.com/t/371213c6129c24324f5aa2e2e61319af.eot");
src: url("https://db.onlinewebfonts.com/t/371213c6129c24324f5aa2e2e61319af.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/371213c6129c24324f5aa2e2e61319af.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/371213c6129c24324f5aa2e2e61319af.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/371213c6129c24324f5aa2e2e61319af.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/371213c6129c24324f5aa2e2e61319af.svg#Google Sans Bold")format("svg");
}
2CSS rules to specify fonts
font-family: "Google Sans Bold";