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