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