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