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