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