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