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