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