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