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