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