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