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