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