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