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