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