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