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