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