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