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