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