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