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