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