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