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