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