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