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