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