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