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