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