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