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