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