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