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