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