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