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