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