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