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