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