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