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