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