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