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