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