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