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