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