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