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