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