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