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