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