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