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