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