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