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