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