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