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