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