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