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