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