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