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