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