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