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