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