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