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