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