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