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