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