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