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