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