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