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