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