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