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