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