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