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