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