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