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