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