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