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