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