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