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