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