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