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