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