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