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