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