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