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