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