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