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