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