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