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