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