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