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