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