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