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