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