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