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