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