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