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