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