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