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