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