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