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