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