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