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