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