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