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