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