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