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