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