Use on the webTotal Use [ 4674 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/fc7f909332f47b0a1979cb16a5d8a587?family=Bratt+Graner" 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/fc7f909332f47b0a1979cb16a5d8a587?family=Bratt+Graner);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Bratt Graner";
src: url("https://db.onlinewebfonts.com/t/fc7f909332f47b0a1979cb16a5d8a587.eot");
src: url("https://db.onlinewebfonts.com/t/fc7f909332f47b0a1979cb16a5d8a587.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/fc7f909332f47b0a1979cb16a5d8a587.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/fc7f909332f47b0a1979cb16a5d8a587.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/fc7f909332f47b0a1979cb16a5d8a587.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/fc7f909332f47b0a1979cb16a5d8a587.svg#Bratt Graner")format("svg");
}
2CSS rules to specify fonts
font-family: "Bratt Graner";