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