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