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