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