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