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