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