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