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