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