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