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