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