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