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