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