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