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