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