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