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