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