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