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