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