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