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