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