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