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