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