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