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