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