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