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