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