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