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