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