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