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