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