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