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