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