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