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