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