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