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