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