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