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