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