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