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