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